This Plugin add dummyfields to display hints for text- and password-input-fields.
The dummys will not be submit.
Or it can pick automatically an optional given attribute (default: title)
of the element so you can initiate a couple of fields with one line:
$("input").ztInputHint();
You can specify a hint for every element you want and/or set one of the optional settings:
$("input#username").ztInputHint({
hint: 'User',
sourceAttrib: 'alt',
hintClass: 'icon'
});