2009-07-22 2 views

Antwort

1
$("#container div").draggable({ 
    stop:function(e, ui) { 
     alert("id=" + $(this).attr("id"); 
    }}); 
0

Haben Sie versucht:

$(this) // this should be the current element 
Verwandte Themen