Hi there
I have noticed a very weird bug when using $.html() in IE6.
For example I have:
<div id="content">
paragraph
<ul>
<li>list item 1</li>
<li>list item 2</li>
<li>list item 3</li>
</ul>
</div>
When I used
$("#content").html()
I get
paragraph
<ul>
<li>list item 1
<li>list item 2
<li>list item 3
</ul>
Other other browser is fine, problem is with IE6.
Any suggestions?