Как получить ценность кнопки, которая нажимает на нее jQuery
$("button").click(function() {
var button = $(this).val();
alert(button);
});
sajad.pro
$("button").click(function() {
var button = $(this).val();
alert(button);
});