All browsers are respecting my code except the IE7 that put a \[code\]</ul>\[/code\] that does not exist in my code, finishing with my form structure.The code below is generated in the source code of IE9:\[code\]<div class="fieldBairro_end"> <li class="fields"> <div class="field"> <label for="bairro_end" id="complemento_end" class="required"><em>*</em>Bairro</label> <div class="input-box"> <input type="text" name="bairro_end" value="" title="bairro_end" id="bairro_end" class="input-text required-entry" /> </div> </div> </li> </div>\[/code\]The same part of code in IE7\[code\]<DIV class=fieldBairro_end></DIV></DIV></LI><LI class=fields><DIV class=field><LABEL class=required id=complemento_end for=bairro_end><EM>*</EM>Bairro</LABEL> <DIV class=input-box><INPUT class="input-text required-entry" id=bairro_end title=bairro_end name=bairro_end> </DIV></DIV></LI></UL></DIV>\[/code\]This is cosing a tag called But in IE9 this tag appear in a line very below itWhile I'm trying make a JQuery or JavaScript to solve itThanks for any helpAndr