9
estoy tratando de hacer esto:de entrada: Texto + selector de área de texto en jQuery
$('input:text','textarea').focus(function() {
$(this).removeClass('wrong');
if (this.value == this.defaultValue){
$(this).val('');
}
Pero $('input:text','textarea')
no funcionará como un selector. ¿Qué estoy haciendo mal?
Funciona, gracias Paul. – Hakan