I have 3 buttons with same id, I need to get each button value when he\'s being clicked.
You can't have the same id because id is unique in page HTML. Change it to class or other attribute name.
$('attributename').click(function(){ alert($(this).attr(attributename))});