vote up 0 vote down star

Hi,

I have the following code

<div id="container">
    <div id="_01">1° item</div>
    <div id="_02">2° item</div>
    <div id="_03">3° item</div>
    <div id="_04">4° item</div>
</div>

So in my js code

$("#container div").draggable({
    stop:function(e, ui) {

    }});

What i have to put in stop event in order to get the identifier of a draggable element ?

regards,

flag

64% accept rate

2 Answers

vote up 1 vote down check
$("#container div").draggable({
    stop:function(e, ui) {
       alert("id=" + $(this).attr("id");
    }});
link|flag
vote up 0 vote down

Have you tried:

$(this)  // this should be the current element
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.