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

https://github.com/paularmstrong/labelover

A jQuery plugin that handles dynamically placing an HTML label over its associated input.
https://github.com/paularmstrong/labelover

Last synced: 6 months ago
JSON representation

A jQuery plugin that handles dynamically placing an HTML label over its associated input.

Awesome Lists containing this project

README

          

Usage:

$(document).ready(function() {
$('form input').labelover();
});

Add CSS:

.labelover { position: relative; }
.labelover label {
position: absolute;
z-index: 1;
top: 2px;
left: 4px;
}
.labelover input {
position: relative;
margin: 0;
}