Hi,
I am facing issues with the callback operation specifically in IE browsers. all other browsers, it is working as expected. You can find the HTML code below:
<script src="https://platform.twitter.com/widgets.js" type="text/javascript"></script>
Tweet
<script type="text/javascript">
twttr.ready(function (twttr) {
alert(twttr);
// bind events here
twttr.events.bind(‘tweet’, function (event) {
alert('testing');
});
});
</script>
Same code works fine in Chrome, Firefox, but not in IE(any version).
Moreover, when we host the same code in Apache server, it works in IE too. But when it is hosted in IIS, it doesn’t.
Can anyone help here.
raj.