jcampbell1 / jquery-html5-placeholder-shim

Makes the html5 input placeholder attribute work in all browsers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HTML5 Placeholder support for non compliant browsers using jQuery.

This plugin adds support for the placeholder attribute in HTML5 form elements to browsers that don't natively support it.

Usage:

Just include the jquery.html-placeholder-shim.js script into your document head like so:

<head>
  <script type='text/javascript' src='jquery.js'></script>
  <script type='text/javascript' src='jquery/html5-placeholder-shim.js'></script>
</head>

The script will automatically execute itself on the $(document).ready event.

HTML5 placeholder Example:

<input type="search" placeholder="search the internets" name="query" />

License:

Dual licensed under the MIT and GPL licenses.

About

Makes the html5 input placeholder attribute work in all browsers


Languages

Language:JavaScript 100.0%