I have a form with multiple submit. How can i found which button is submitted ?
$("#my_form").live("submit", function(event) {
event.preventDefault();
var form_action = $(this).attr("action");
var form_data = $(this).serialize();
// Bonton ?
$.post(
// ...
);
return false;
});