Is this simply broken in IE, or is there some hidden setting/function call magic needed to make it work?
Console shows no errors, no logs from the console.log lines, no event fires, no ajax post is made, nothing.
window.twttr = (function (d,s,id) {
var t, js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id))
{
return;
}
js = d.createElement(s); js.id=id;
js.src = "//platform.twitter.com/widgets.js";
fjs.parentNode.insertBefore(js, fjs);
return (window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } }));
}(document, "script", "twitter-wjs"));
twttr.ready(function (twttr) {
console.log("twttr.ready");
twttr.events.bind('retweet', function (ev) {
console.log("retweet");
verifyTwitter();
});
twttr.events.bind('tweet', function (ev) {
console.log("tweet");
verifyTwitter();
});
});