I am overriding a form submit event like this:
form.onsubmit = function(event) { event.preventDefault();
But when I call submit on the fo
Try with this one
form.submit = function() { //event.preventDefault(); No need of this call //do your processing here }