Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to send POST request using javascript. below is the code snippet-

    for (var i = 0; i < elements.length; i++) {
       var uid = i;
       var http = new XMLHttpRequest();
       var params = 'uid='+uid;
       http.open('POST','/home/index.php', true);

       http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
       http.setRequestHeader('Content-length', params.length);
/*    
       http.onreadystatechange = function() {
          if(http.readyState == 4 && http.status == 200) {
             continue;
          }
       }
*/
       http.send(params);
    }

After running the script from firebug, no request is being sent. enter image description here

Where is the error?

share|improve this question

migrated from webapps.stackexchange.com Oct 13 '12 at 10:24

1 Answer

You have an illegal continue statement. You can only use continue in loops, not as a way to break out of a function. Try return instead.

share|improve this answer
Hey, i commented the complete http.onreadystatechange function. Firebug is showing undefined. Screenshot is attached in the question. – Ravi Joshi Oct 13 '12 at 8:48

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.