Hello, im Pablo Noel

Graphic Design & Comunication Systems


Clean inputs on focus

Esta entrada fue publicada el:

08Junio2010

, ,

0 Comentarios

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á.

Deja tu comentario!