Tema: jquery
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 21/09/2015, 13:34
anachanelblanc
 
Fecha de Ingreso: marzo-2014
Ubicación: Galicia
Mensajes: 24
Antigüedad: 10 años, 8 meses
Puntos: 0
Pregunta jquery

Hola, ¿ como sería este código en jquery para el elemento input(nombre,email) recibir el evento onfocus y onblur?, gracias
Código Javascript:
Ver original
  1. <form action="registro.php" method="get" name="miFormulario" id="miFormulario"
  2. enctype="multipart/form-data">
  3.  
  4. <input type="text" name="usuario" id="usuario"  value="Escribe tu Nombre"
  5.     onfocus="if (this.value == 'Escribe tu Nombre') {
  6.        this.value = ''; this.style.background = 'transparent'; }"
  7.    
  8.     onblur="if (this.value == '') {
  9.        this.value = 'Escribe tu Nombre';
  10.     this.style.background = 'url(imagenes/online-red-icon.png)no-repeat'; }">
  11.        
  12.  
  13. <input type="text"  name="email" id="email
  14.    value="Escribe tu email"
  15.    onfocus="if (this.value == 'Escribe tu email') {
  16.         this.value = ''; this.style.background = 'transparent'; }"
  17.    
  18.    onblur="if (this.value == '') {
  19.         this.value = 'Escribe tu email';
  20.      this.style.background = 'url(imagenes/descarga.png)no-repeat'; }">
  21.    
  22. </form>