this is a bug I found when using firebug to refresh some data in an menu..
code:
$.post(rAction,{action:"login",ddd:$("#ccc").val(),ddd:$("#ddd").val()},function(html){
$(html).insertAfter($("div#compte .padder
fieldset
h2")).load(errorVerif2());
activeMenu();
$.load(errorVerif2());
});
instead of returning
<p>1</p>
<p>2</p>
<p>3</p>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
it returned the following
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
</ul>
<p>3</p>
<p>2</p>
<p>1</p>
the reversion of the elements only seems to happen on the top level
elements of the html answer.
But it seems rather disturbing.
thx for reading this.
Michel Brouckaert
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/