First, i am a Noob.
I wanna to get the content of the opened entry in Google Reader. I used the below command to get the div section.
document.getElementById('current-entry').getElementsByClassName('item-body')
and the below snapshot was the div section in firebug.
Attachment 14766
However, I cannot get the content by innerHTML or outerHTML or textContent.
if i use
var ib = document.getElementById('current-entry').getElementsByClassName('item-body') ;
var tc = ib.getElementsByTagName('p')
the firebug return the error ib.getElementsByTagName is not a function.
Can you help me?


Reply With Quote
Bookmarks