I have a form which contains the method "POST" and action ="abc.php" and button type of <input type ="button">
I have a handler when i cick that button i want to send a request to abc.php but nothing is happening no action is being prformed.I dont want to change the <input type ="button">
to <input type="submit>
.How do i submit the Form .Here is the code
<form name= "form1" id ="form1" action ="abc.php" method="post">
<input type ="button" id="mybutton" value ="Add">
......
//All form Elements.
</form>
$(document).ready(function() {
//Load all elements
});
$("#mybutton").click(function(e){
alert(true);
//$("#frmpohdr").submit();
});
The Above Statement is giving error and i know we need to have button type of submit for this method.How do i submit the Form to the abc.php when i click the button .I have tried all $.ajax methods