In this edition of blog post, we will quickly build a jQuery watermark pluigin for input controls. This is an adapted post from http://uniquemethod.com/html5-placeholder-text-jquery-fallback-with-modernizr. I have quickly refactored the code as a jQuery plugin. The author in the above blog post has done a great job of summarizing the concept.
A watermark or placeholder text is an indicator by input controls as to what data could be enter in the field. It's kind of a hint to user entering the data.
HTML5 has native support for watermark in the form of "placeholder" attribute. Any text that you put in the placeholder attribute will show as watermark in modern browsers.
For browsers that doesn't yet support HTML5, jQuery comes to the rescue. Also, we are using Modernizr for feature detection.
Modernizr is an excellent feature detection library, with which we can detect for support of modern standard by browsers.
A watermark or placeholder text is an indicator by input controls as to what data could be enter in the field. It's kind of a hint to user entering the data.
HTML5 has native support for watermark in the form of "placeholder" attribute. Any text that you put in the placeholder attribute will show as watermark in modern browsers.
For browsers that doesn't yet support HTML5, jQuery comes to the rescue. Also, we are using Modernizr for feature detection.
Modernizr is an excellent feature detection library, with which we can detect for support of modern standard by browsers.
You can see a working version here
You can use this plugin, in the following manner.
$(".placeholder").watermark();
The above jQuery code finds all elements with a class of "placeholder" and applies the watermark() function to it.
The sample input element is shown below.
<label>Namelabel>
<input class="placeholder" placeholder="Enter your full name." type="text" />
<input class="placeholder" placeholder="Enter your full name." type="text" />
Do note the above input element has a class of "placeholder" and also a placeholder attribute which is set to "Enter you full name". This placeholder text will be shown as watermark in the input element. Also, HTML5 browser directly understands and render this placeholder attribute appropriately.
Rather than bloating this post, I have added appropriate comment in the jsfiddle. In case anyone needs further clarifications, please drop a comment.
Rather than bloating this post, I have added appropriate comment in the jsfiddle. In case anyone needs further clarifications, please drop a comment.
Enjoy~!.
Comments