Revision: 53264
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 17, 2011 18:45 by jesudasjj
Initial Code
$('.removeVal').live("click focus", function() { if (this.value == this.defaultValue) { this.value = ''; $(this).removeClass("itl"); } }); $('.removeVal').live("blur", function() { if (this.value == '' || this.value == this.defaultValue) { this.value = this.defaultValue; $(this).addClass("itl"); } });
Initial URL
Initial Description
Initial Title
on focus remove default value and "itl" class
Initial Tags
form, css
Initial Language
CSS