Skip to content

Instantly share code, notes, and snippets.

Created December 12, 2012 08:36
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/4266129 to your computer and use it in GitHub Desktop.
Save anonymous/4266129 to your computer and use it in GitHub Desktop.
Awesome placeholder attribute fallback
# If browser doesn't support placeholders, take the placeholder text and set it as the field's value
unless Modernizr.input.placeholder
$("input[placeholder]").each (index, element)->
$(element).val($(element).attr("placeholder"))
@jonikorpi
Copy link

Made this anonymous by accident. GitHub's login was being weird.

Here's an updated version: https://gist.github.com/4266172

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment