Perceive

IE 6.0 choaks on <script/>

IE 6.0 croaks on some script tags. completely stops rendering the page. for all you XHTML junkies out there, when including a script in your page, make sure you have a closing script tag, such as:

<script language="javascript" type="text/javascript" src="blah.js"></script>

NEVER do:

<script language="javascript" type="text/javascript" src="blah.js"/>

although this is correct and fine XHTML, IE 6 will choke on it.