Clean inputs on focus
A fast and nice way using Jquery to clean input values on focus, and put the default value back when is empty:
$(".clean").each(function(){
var value = $(this).val();
$(this).focusin(function(){if($(this).val() == value){$(this).val("");};});
$(this).focusout(function(){if($(this).val() == ''){$(this).val(value);};});
});
Just add the class “.clean” to your input tag and voilá.
[...] This post was mentioned on Twitter by Pablo Noel, Mr Estupendo. Mr Estupendo said: Como limpiar los valores de una caja de input al tener el foco en ella. Gracias @pablonoel http://icio.us/wdlkpg [...]
[...] Pablo Noel » Clean inputs on focus Como limpiar los valores de una caja de input al tener el foco en ella con jQuery. Gracias @pablonoel (tags: howto input forms jquery javascript) [...]