How can I detect which input button is pressed on this form using jquery .on() submit?
<form name="input" action="none" method="post">
<input type="text" name="user">
<input id="submit" type="submit" value="Submit">
<input id="cancel" type="submit" value="Cancel">
</form>
$('body').on('submit', 'form', function(e) {
console.log($(this).attr("value"));
return false;})
A jsfiddle example is here http://jsfiddle.net/dansalmo/suZHg/
I have looked many places and tried many different ways of trying to detect the input submit button value within the .on() method but I can't get it.
In my example $(this).attr("value") and $(this).val() come up undefined
I then want to be able to submit the form using ajax so just detecting the button is not the point of this question. If there is no way to do it using .(on) submit then it would be helpful to know that as opposed to answering with alternate button detection methods that do not involve form submission.