Reputation: 88197
If I select elements to enable jQuery plugins like
$(".clickaway").clickaway();
Can I somehow get the selector .clickaway
that was used in the plugin?
Upvotes: 1
Views: 985
Reputation: 7253
I'm sure you would have noticed it digging into the object using Firebug, but just the .selector property of the jQuery object.
Upvotes: 3