Ver Mensaje Individual
  #3 (permalink)  
Antiguo 23/11/2009, 12:53
Avatar de hector2c
hector2c
 
Fecha de Ingreso: noviembre-2007
Ubicación: Perú - Tacna
Mensajes: 979
Antigüedad: 17 años
Puntos: 25
Pregunta Respuesta: Jquery : añadir html al principio del elemento

Código HTML:
<html>
<head>
  <script src="http://code.jquery.com/jquery-latest.js"></script>
  
  <script>
  $(document).ready(function(){
    $("p").prepend("<b>Hello </b>");
  });
  </script>
  <style>p { background:yellow; }</style>
</head>
<body>
  <p>there friend!</p>
  <p>amigo!</p>
</body>
</html> 
En este ejemplo agrega la palabra "Hello" antes de "there friend" y "amigo"...
__________________
blog: hector2c.wordpress.com
email: [email protected]