how to get value of button through jquery in formcollection with id of form collection?
Posted
by
AbhijitPandya
on Stack Overflow
See other posts from Stack Overflow
or by AbhijitPandya
Published on 2012-12-11T07:01:11Z
Indexed on
2012/12/11
11:04 UTC
Read the original article
Hit count: 133
jQuery
i have formcollection and two buttons like
<form id="frmSubmitTax" method="post">
<input type="submit" id="btnTaxSave" value="Save" />
<input type="submit" id="btnTaxNext" value="Next" />
</form>
i m submitting form through jquery and i want to get value of button while form submitting jquery code
$('frmSubmitTax').live('submit', function (e) {
get value of button that which button is submitted......
});
© Stack Overflow or respective owner