jebias adlı üyeden alıntı: mesajı görüntüle
örnek form yapısını ve almak istediğiniz değeri gösterebilirmisiniz
xaqpax adlı üyeden alıntı: mesajı görüntüle
<div id="butonID" name="butonADI">TIKLA</div>

$("#butonID").click(function(){
    
    deger = $(this).attr("name");
    alert(deger);
    });​
DEMOSU : http://jsfiddle.net/kzKfu/
    $('.form').submit(function(event) {
        var button_name = event.originalEvent.explicitOriginalTarget.name;
        return false;
    });
ffde bu şekilde alıyorum ama chromede alamıyorum.