Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
jQuery Ajax File Upload

i want to upload a file using php and during the upload i want to show a loader to the user. Afterwards one div should be changed, and therefore i thought jQuery will be the right choice.

I tried it with this method, but it is not working properly:

HTML:

<div id="pop_layerbody">
<form action="javascript:;" method="post" enctype="multipart/form-data" onSubmit="jsUploadFile();">
<input name="bild" id="bild" type="file" size="50" maxlength="100000">
<input type="submit" value="Hochladen" id="button_upload">
</form>
</div>

JavaScript/JQuery:

function jsUploadFile() {
    $('#pop_layerbody').html('<img src="../includes/images/ajax-loader-big.png" style="margin-top:35px;" />');
    $.ajax({
        type: "POST",
        url: "upload_picture_logic.php",
    }).done(function (msg) {
        alert("Data Saved: " + msg);
    });
}

PHP: (excerpt)

@move_uploaded_file($_FILES['bild']['tmp_name'], "upload/".$_FILES['bild']['name']);

Anybody know the answer? It seems that even the POST-combination between HTML and JS is not working...

share|improve this question

marked as duplicate by Felix Kling, Darin Dimitrov, Purmou, Book Of Zeus, Andrew Barber Jan 15 '12 at 21:15

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

You can not upload file asynchronous with ajax. You can however fake that behavior with various jquery plugins for file uploading.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.