Thank you for response. I'm using xslt to generate my html and I'm not much experienced in it.
I defined a simple div element with a fixed name inside my tab content and could found it in DOM using all browsers. That is, I realized there is something wrong with xslt, generating dynamic names for div element. I was assigning ID to each div element in xslt like the following which was causing the error:
PHP Code:
<div class="divComment">
<xsl:attribute name="id">
news_comment_<xsl:value-of select="news_id"/>
</xsl:attribute>
</div>
What I did was to store the value of news_id in an xslt variable and then simply call its value like this:
PHP Code:
<div class="divComment" id="news_comment_{$news}">
</div>
I know that this post will remain in LQ forever. So I hope it helps anyone with similar problem.