Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/12/2011, 05:25
Avatar de jor_0203
jor_0203
 
Fecha de Ingreso: octubre-2011
Ubicación: mexico
Mensajes: 760
Antigüedad: 13 años, 2 meses
Puntos: 8
el onload es solo para el body

una pregunta a todos el mi cuates onload solo funciona en el body, ya que lo he tratado de usar en otros elementos del html y no me sale.
ojala me puedan ayudar o dar un consejo para ver como se puede usar esto.
mil gracias

Código Javascript:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>Documento sin t&iacute;tulo</title>
  6. <script>  
  7. function solo() {  alert("hola");}
  8. </script>
  9. <style type="text/css">
  10. <!--
  11. * { padding:0; margin:0; }
  12. #contenedor{
  13.             height: 300px;
  14.             width: auto;
  15.             background-color:#FF99CC;
  16.             }
  17. -->
  18. </style>
  19. </head>
  20. <body onload="solo()" >
  21. </body>
  22. </html>