Skip to content

Instantly share code, notes, and snippets.

@prajwalit
Created January 6, 2011 10:21
Show Gist options
  • Save prajwalit/767736 to your computer and use it in GitHub Desktop.
Save prajwalit/767736 to your computer and use it in GitHub Desktop.
For checking support for placeholder
// To detect native support for the HTML5 placeholder attribute
var fakeInput = document.createElement("input"),
placeHolderSupport = ("placeholder" in fakeInput),
clearValue = function () {
if (searchField.val() === originalText) {
searchField.val("");
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment