[jQuery] html() + firebug = funky

[jQuery] html() + firebug = funky

the html() function calls:
this.set( "innerHTML", h );
which makes it set the innerHTML attribute, not property. If you inspect the markup with firebug, you'll see that firebug will actually render html in its pane. Very funky.
May I suggest that it's done via:
this.each(function(){this.innerHTML = h;});
Thoughts?
happy coding.
-Brito
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/