Estoy teniendo un problema que los sript que pongo en el head me aparecen en el body cuando ejecuto la pagina con firefox y la miro con el firebug. Alguien sabe por que pasa esto?
Asi tengo el head:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<noscript><meta HTTP-EQUIV="REFRESH" content="0"; url="algo/sinJs"></noscript>
<script src="algo/s/jquery.js" type="text/javascript"></script>
<link rel=StyleSheet href="algo/css/index.css" type="text/css" media=screen>
</head>
<body>
</body>
</html>
y cuando lo ejecuto en el navegador, me aparece asi:
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
</head>
<body>
<noscript><meta HTTP-EQUIV="REFRESH" content="0"; url="algo/sinJs"></noscript>
<script src="algo/s/jquery.js" type="text/javascript"></script>
<link rel=StyleSheet href="algo/css/index.css" type="text/css" media=screen>
</body>
</html>
Gracias.