I am working on an intranet project for IE6 (I know ...), and I need to get some HTML code from the div.
I use $('#output').text($('#container').html());
But IE6 prints all the code in uppercase:
<TABLE border=1>
<TR>
<TD>Test Content</TD>
</TR>
</TABLE>
How to convert HTML tags to lowercase using jQuery?
It would be useful to have a plugin that can recursively pass through the DOM tree.
source
share