I’m trying to write a simple placeholder jQuery plugin for a site of mine but of course I only want to fire the function if the native placeholder attribute isn’t supported…
How can I use jQuery to test for native support of the placeholder attribute?
You can add to
$.supportquite easily by inserting this at the top of the Javascript you’ve written:You can then use either
$.support.placeholderorjQuery.support.placeholderanywhere in your code.NB This code adapted from diveintohtml5, the link provided by hellvinz above.