SyntaxFix
Write A Post
Hire A Developer
Questions
I had a problem with the same symtoms. In my case, it turned out that my submit function was missing the "return" statement.
For example:
$("#id_form").on("submit", function(){ //Code: Action (like ajax...) return false; })