jQuery(document).ready(function() { jQuery("input:text, textarea, input:password").each(function() { if (this.value == '') this.value = this.title; }); jQuery("input:text, textarea, input:password").focus(function() { if (this.value == this.title) this.value = ''; }); jQuery("input:text, textarea, input:password").blur(function() { if (this.value == '') this.value = this.title; }); });
