Como obter o valor do botão que clique nele jQuery
$("button").click(function() {
var button = $(this).val();
alert(button);
});
sajad.pro
$("button").click(function() {
var button = $(this).val();
alert(button);
});