Skip to content

Instantly share code, notes, and snippets.

@Takaya213
Created May 2, 2013 07:57
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Takaya213/5500799 to your computer and use it in GitHub Desktop.
Save Takaya213/5500799 to your computer and use it in GitHub Desktop.
A watermark effect for input boxes.
(function($) {
$.fn.watermark = function() {
return this.each(function() {
var obj = $(this);
var initialText = obj.val();
obj.focus(function() {
if (obj.val() === initialText)
obj.val("");
});
obj.blur(function() {
if (obj.val() === "")
obj.val(initialText);
});
});
};
})(jQuery);
$(document).ready(function() {
$('.watermark').watermark();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment