Hola a todos.
Quisiera saber cual es la diferencia de llamar funciones dentro y fuera del head
Ejemplo
Dentro del head Código HTML:
<html>
<head>
<script type="text/javascript">
$(document).ready(function(){
})
</script>
</head>
<body>
</body>
</html>
Fuera del head (o al final) Código HTML:
<html>
<head>
</head>
<body>
<!-- contenido HTML o PHP -->
<!-- contenido HTML o PHP -->
<!-- contenido HTML o PHP -->
<!-- contenido HTML o PHP -->
<!-- contenido HTML o PHP -->
<script type="text/javascript">
$(document).ready(function(){
})
</script>
</body>
</html>
Gracias!
.