Hallo Forumfreunde
Ich möchte das eine URL aufgerufen wird bzw. ich hab das irgendwo einmal so gesehen:
Ich komm beim Klicken da rein, aber weiter geht es nicht. URL wird richtig angegeben z.B. http://www.google.ch/blub
Hochladen kann ich mit dropzone über, das klappt:
Warum geht das nicht oder wie geht das richtig?
Ich hab das nur mal kopiert, ich kenn mich kaum mit JavaScript aus.
Grüsse
Ich möchte das eine URL aufgerufen wird bzw. ich hab das irgendwo einmal so gesehen:
Ich komm beim Klicken da rein, aber weiter geht es nicht. URL wird richtig angegeben z.B. http://www.google.ch/blub
Code:
$('.profile-image .upload a.delete').click(function()
{
$(this).parent().find('.deletepic').click();
url: $('form[name=update-account]').data('image-delete')
});
Hochladen kann ich mit dropzone über, das klappt:
Code:
$('form[name=upload-profile-image]').fileupload({
url: $('form[name=update-account]').data('image-action'),
dropZone: $('.profile-image .upload'),
dragover: function(ev,data)
{
$('.profile-image .upload').addClass('ondrag');
},
add: function (ev, data)
{
data.submit();
},
send: function()
{
$('.profile-image .upload label').css('visibility', 'hidden');
$('.profile-image .upload img').show();
},
done: function(e, data)
{
if (jQuery.browser.msie && jQuery.browser.version <= 9)
{
location.href = location.href;
}
$('.profile-image .upload label').css('visibility', 'visible');
$('.profile-image .upload img').hide();
$('.profile-image .profileimage-round figure').css(
'background', 'url('+ data.result +') no-repeat'
).find('i').remove();
$('.profile-image .upload').removeClass('ondrag');
}
});
Warum geht das nicht oder wie geht das richtig?
Ich hab das nur mal kopiert, ich kenn mich kaum mit JavaScript aus.
Grüsse
Zuletzt bearbeitet: