I’m trying to find the value of the submit button that triggered the form to submit
$("form").submit(function() {
});
I could possibly fire a $(“input[type=submit]”).click() event for each button and set some variable, but that seems less elegant than some how pulling the button off of the the form on submit.
I implemented this and I suppose it will do.
and this is the submit button event that sets it up
Thanks for the responses, but this isn’t terribly inelegant…