Jump to content
GreenSock

mimeartist

Get the id of the item you're dragging?

Moderator Tag

Warning: Please note

This thread was started before GSAP 3 was released. Some information, especially the syntax, may be out of date for GSAP 3. Please see the GSAP 3 migration guide and release notes for more information about how to update the code to GSAP 3's syntax. 

Recommended Posts

If I've got 10 items all of the same class... and use 
 
contactDrag = Draggable.create(".contactSheetSquare", {type:"top, left", throwProps:true, dragClickables:true,  edgeResistance:0.9, onDragStart:function() { doDrag(this); } })

 

How do I get the id in the function doDrag... it doesn't seem to want to grab it?

Link to comment
Share on other sites

"this" refers to the Draggable instance which has a "target" (the element), so you should be able to do:

this.target.getAttribute("id")
  • Like 2
Link to comment
Share on other sites

  • 4 months later...

Thanks Jack, 

 

I just googled this, and found my own question... Thanks for answering it!

 

Happy Thanksgiving!

 

James

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×