A proper implementation of input placeholder text, or as I like to call them: default values.
$('#someTextInput').defaultValue();
$('#someTextInput').defaultValue({
labelText: 'A label', // Set the text for the input's default value. By default it will find the corresponding label and use that value.
hideLabel: true, // Hide the input's corresponding label
clearOnFocus: false, // Immediately remove the default value when user focuses element
preferPlaceholder: false // Use HTML5 placeholder is available in client browser
});
This plugin uses classes that you can implement in your own stylesheet.
.defaultvalue_label
Will be added to the default value layer
.defaultvalue_label_focus
Will be added to the default value layer when the user focuses in the input