Skip to main content

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

2
  • 1
    $._data(elem, "events") doesn't appear to work with jQuery 1.10, at least for events registered using $(elem).on('event', ...). Does anyone know how to debug those? Commented Dec 6, 2013 at 11:19
  • 4
    I'm not positive, but I think the first param of $._data may need to be an element and not a jQuery object. So I need to fix my example above to be console.log($._data($myLink[0], "events").click); Commented Dec 6, 2013 at 20:44