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.