42 - Evento blur (DOM)
Problema:
Disponer dos controles de tipo text con algún contenido. Fijar de color azul su fuente. Al tomar foco el control cambiar a color rojo y al perder el foco volver a color azul.
pagina.html
estilos.css
funciones.js
Ejecución de la página
Prueba
#text1, #text2 { color: #00f; }
document.getElementById('text1').addEventListener('focus', tomarFoco) document.getElementById('text2').addEventListener('focus', tomarFoco) document.getElementById('text1').addEventListener('blur', perderFoco) document.getElementById('text2').addEventListener('blur', perderFoco) function tomarFoco(e) { e.target.style.color = '#f00' } function perderFoco(e) { e.target.style.color = '#00f' }
No tiene disponible el navegador la capacidad de iframe
Retornar