(This post follows
http://developer.yahoo.net/forum/index.php?showtopic=1710)If you try to workaround using
CODE
buffer.push("<img src=\"", state.suggestions[i].companyIconUrl, '">');
the parse is happy but silently strips " src" resulting in the incorrect HTML
which then fails with a cryptic "d is null" error.
Jules
PS:
For those who hit this bug as well, the workaround is
CODE
buffer.push('<img',' src=',"\"", state.suggestions[i].companyIconUrl, '">');