Ajax Posting Is Shown As Red Color In Firebug Console
If i execute the following code ,then i enabled the firebug.In firebug while submitting form ,in console the 'post to login_submit.php' is shown as a red color.And i also didnt get
Solution 1:
Because the form is submitting and it is causing the http connection to be cut off. Cancel the submission of the form.
onsubmit="return false"Ideally you would be calling your function onsubmit of the form and not click of the button.
![Cloning Elements [div] [script] In Javascript](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiEZR1HtNb7Cu-zFkWj8JhcNIalqp5JuTCYC04mfY9PnrEAiY6hwfgJmH0aOmBhUm4JJDR_oj_8TY8PTKMiPPS1YbcZJBqYYqP0fxcExVfJ4ROdgVGPrvVGNQIQRCXgdy2asyrxtLmRb40/w192-h108-n-k-rw-no-nu/nomage+%25281%2529.png)
Post a Comment for "Ajax Posting Is Shown As Red Color In Firebug Console"