I am capturing tweet button’s event with
twttr.ready(function (twttr) {
twttr.events.bind('tweet', function (event) {
$.each(event.data, function (index, value) {
alert(index + ': ' + value);
});
alert(event.data);
});
});
However the .each part does not display anything, altough “alert(event.data);” shows ([object Object]). I have made some guesses but all of them are undefined. Is there a list about that?