Prevent default and then refresh form normally
Form is submitted through jquery code $("#myform").ajaxForm().submit();
On the other hand I have another submit button on the same form which triggers fine but it triggers through jquery without refreshing the page and i want it to refresh the page without jquery as a default behavior. How can i do so?
I tried something like below but it still submits using jquery. Any help would be highly appreciated in this regard.
$("#Save").click(function(e){
e.preventDefault();
$('#myform').submit();
})