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>
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>
.