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
[email protected]
http://jquery.com/discuss/

Reply via email to