Hello, im Pablo Noel

Graphic Design & Comunication Systems


Articulos escritos en la Categoria ‘Code’

Clean inputs on focus

Esta entrada fue publicada el:

08Junio2010

0 Comentarios

Leer Articulo

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

Cocombobox Jquery Plugin for enhanced Comboboxs / Select Boxes

Esta entrada fue publicada el:

12Febrero2010

3 Comentarios

Leer Articulo

Working on a couple of proyects i find myself searching for a solution for the customization for our so-long-used Select tag,  a.k.a Combobox. If you work with HTML you will know that its so freaking hard to add custom graphics and behaviors to this element, so i made a “simple” and kind of naiv solution [...]