I tried submitting form data without reloading the page using a submit event check. Below is my piece of code:
$( "#my-form" ).submit(function( event ) {
alert( "Handler for .submit() called." );
//event.preventDefault();
return false;
});
Due to this page refresh has been stopped. But the action mapping to the form is not getting called. Is there any way that I can call the action and submit data without reloading page.