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 =
If you can't use console.log then alert( $(this).data("events").toSource() ) can also be used.
console.log
alert( $(this).data("events").toSource() )