I am trying to submit a form through onclick event on tag. I have tried triggering document.myform.submit(), this.form.submit(), parentNode.submit() etc. but none of this i
Using Jquery you can do something like this:
$(document).ready(function() { $('#btnSubmit').click(function() { $('#deleteFrm').submit(); }); });
Submit