Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/04/2006, 02:32
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 3 meses
Puntos: 772
Hola ing_amc

Pon una imagen al lado del cuadro de texto:

<img id="im" src="" />

y pon así la función:
Código:
function pp(){
   if (document.postmodify.palabra.value==""){
      document.getElementById('im').src = 'tuimagen.jpg';
      alert('Escribe algo');
      document.postmodify.palabra.focus();
   return false;
   }
}
Saludos,