Its a well known problem and still not solved.
Web Intents Javascript Event (twttr.events.bind) ‘tweet’ STILL doesnt fire in IE - tested Versions: >= 8, in Standard Mode, clean install.
We tried everything.
-> Doesnt work.
Twitter: Where is the problem? It doesnt have to do with Doctypes, File Encoding or something like this. With or without SSL - no difference.
Code we use:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript" src="inc/js/jquery-1.9.0.js"></script>
<script type="text/javascript" src="https://platform.twitter.com/widgets.js"></script>
</head>
<body>
<p><a href="https://twitter.com/intent/tweet?&text=Test 1">Tweet</a></p>
<script>
twttr.ready(function(twttr) {
twttr.events.bind('tweet', function (event) {
alert('Yes, yes');
console.log('TWEETED, mate');
});
});
</script>
</body>
</html>
Need to get this to work.
Franceco