Código:
me marca error como debo corregirlo$(document).ready(function() { mifuncion(); }
he visto ejemplos y todo es casi aplicandolo
a un elemento pero como invoco ???
saludos
| ||||
Respuesta: como llamar una funcion cuando carga el jquery pues mira asi es como trato de usarlo
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Sin título 1</title> <script type="text/javascript" src="funciones.js"></script> <script type="text/javascript" src="jquery.js"></script> <script language="javascript"> $(document).ready(function() { mifuncion();//esta funcion esta en el archivo funciones.js } </script> </head> <body> </body> </html>
__________________ gerardo |
| ||||
Respuesta: como llamar una funcion cuando carga el jquery solucionado habia un error en el archivo .js ose que si era correcto
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>Sin título 1</title> <script type="text/javascript" src="funciones.js"></script> <script type="text/javascript" src="jquery.js"></script> <script language="javascript"> $(document).ready(function() { mifuncion();//esta funcion esta en el archivo funciones.js } </script> </head> <body> </body> </html>
__________________ gerardo |
Etiquetas: |