Comments by Dale Jung on scripts

1 comment

Comment on:
Google Reader + del.icio.us

Jun 17, 2007

The following change fixed the undefined title bug for me:
function postBookmark(event){
...
var title=header.firstChild.innerHTML;
to
var title=header.firstChild.nodeValue;