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 =
Print content of object you can use
console.log(obj_str);
you can see the result in console like below.
Object {description: "test"}
For open console press F12 in chrome browser, you will found console tab in debug mode.