With $(this).data(\"events\"); returning [object Object], I need to see what\'s actually going on in there. I found this:
$(this).data(\"events\");
[object Object]
var Finder =
console.log($(this).data("events")) in Chrome (or other browsers) would allow you to drill into the object.
console.log($(this).data("events"))
Ctrl+Shift+J gets you to the console in Chrome.