Jquery Ajax Form Submitting Multiple Times
I am having some issues with multiple form submissions with a jquery/ajax form. I found this by printing every instance of form submission on my server, and saw that a form would s
Solution 1:
ajaxForm binding should be done once only. Try to put the ajaxForm binding on $(document).ready event and try to restructure your logic. ajaxForm was bind every time you click .flag element and all previously bind ajaxForm would be called on all succeeding click event.
Post a Comment for "Jquery Ajax Form Submitting Multiple Times"