I have a web form and need to do some ajax checking before submit. the code is fine if it pass the validation. However, it just keep loading and loading if it fail th validation.
it seems something conflict but I don't know how to chase the problem. Do anyone have similar case that I can find out which part goes wrong?
I tried to use jquery validate, and onsubmit().. return false.. still not work. even I just do the following:
$("#form").submit(function(e) {
alert("return false");
return false;
})
it's expected that the form didn't submit and do nothing with my form, but it just keep loading..
the mouse cursior just "keep loading" and whatever I press, no reaction come out