When I reference jQuery, using the first script reference, every thing is fine, however if I just replace the closing tag with />, jQuery works fine!!, however, a java script library domtab.js stop working. that applies on FF and IE.
Why?, I don't think it is a bug that in all browsers, there is something I miss.
<!--ok-->
<script type="text/javascript" language="javascript" src = "http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" ></script>
<!--Replace-->
<script type="text/javascript" language="javascript" src = "http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js" />
<script type="text/javascript" src="/domtab.js"></script>
Thanks