Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Latest commit

 

History

History
29 lines (17 loc) · 909 Bytes

README.md

File metadata and controls

29 lines (17 loc) · 909 Bytes

jquery-placehold

npm version

A jQuery plugin that enables the HTML5 placeholder attribute in browsers lacking native support.

Requirements

  • jQuery (1.11.2 or newer)
  • Firefox < 3.7, Safari < 4, Internet Explorer < 10

Usage

In your HTML:

<input placeholder="+1 (555) 555-5555">
<textarea placeholder="Four score and seven years ago…"></textarea>

In your JavaScript:

$().ready( function() {
	$('input, textarea').placehold('placeholderClassName');
});

placeholderClassName is an optional string and defaults to "placeholder."

License

The jQuery placehold plugin is licensed under the GNU General Public License, version 2.