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.

I know this is a bit paradoxal because XMLHttpRequest shouldn't be reloading the page, and it's the whole point of it.

Tried in Chrome latest version, Safari on iOS and on an Android. All same result.

I am sending a form through it, with files. Works great, the destination site receive correctly the data, and displays it. Sends back a 200, "OK". (It's facebook)

But then my page reloads automatically. Just like if I submitted the form using HTML form and a submit button. (Which was my original problem)

Here is how I do it, from Javascript

// Get the form element
var formData = new FormData(document.getElementById("photosubmitform")); 

var xhr = new XMLHttpRequest();
xhr.open('POST', 'https://graph.facebook.com/' + facebookWallId + '/photos', false);
xhr.onload = function(event)
{
    var json = xhr.responseText; // Response, yay!
}
xhr.send(formData); // Sending it, will reload the page on success...
share|improve this question

2 Answers

up vote 4 down vote accepted

Any chance you're triggering this by submitting a form? If you don't return false in the onsubmit handler, the form will still be submitted.

share|improve this answer
It works! Added it to the <form> tag like this: <form onsubmit="return false;" id="photosubmitform" enctype="multipart/form-data"> Thanks! – daivuk Jan 8 at 21:46
I had no idea the form would get triggered by sending it through an xhr. – daivuk Jan 8 at 21:49

Use event.preventDefault() when observing button click in your form.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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