Twitter-Plugin in IE7
Posted: Fri Feb 13, 2009 2:46 pm
After installing Twitter-Plugin I could see my Twitter-Posts in FF and Chrome, but not in IE7. IE7 did not like the line
in blogger.js.
After changing it to
it worked in all browsers.
Is it a bug or is there another workaround for that?
EDIT: Added the missing "." which is in the original line.
Code: Select all
document.getElementById('twitter_update_list').innerHTML = statusHTML;
After changing it to
Code: Select all
document.getElementById('twitter_update_list').parentNode.innerHTML = statusHTML;Is it a bug or is there another workaround for that?
EDIT: Added the missing "." which is in the original line.