An open API service indexing awesome lists of open source software.

https://github.com/richardscarrott/jquery-in-field-labels

unobtrusive method to add labels to form inputs that hide on focus and show on blur (also supports Password inputs)
https://github.com/richardscarrott/jquery-in-field-labels

Last synced: about 2 months ago
JSON representation

unobtrusive method to add labels to form inputs that hide on focus and show on blur (also supports Password inputs)

Awesome Lists containing this project

README

        

Given a form the plugin will find all the fields and store their associated text using jQuery's .data() method.

This means it requires inputs to have an 'id' and an associated label using the 'for' attribute, e.g.


Example Label



It can then be initiated like this:

$('form').inFieldLabels();

The method also accepts a filter parameter in case you want to limit the in-field labels to specific elements or :not(specific elements):

$('form').inFieldLabels('.in-field-label');

More documentation can be found [here](http://richardscarrott.co.uk/posts/view/jquery-in-field-labels "More info on the jQuery in-field-labels plugin")