I have 3 buttons <input type="submit" name="submitButton" value="something">
. Then i check the event with $(".form_name").submit(function(e) {
and i would like to check which of the 3 buttons have been clicked and to alert the user of the action and return false if the user wishes to not go through with the action.
How do i check which of these buttons have been clicked?