Limpar campos de formulário em foco
Um pequeno trecho simples que usei muito. $(“input:not(‘.exclude’), textarea”).focus(function() { if( this.value == this.defaultValue ) { this.value = “”; } }).blur(function() { if( !this.value.length ) { this.value = this.defaultValue; }});
Continuar lendo