Skip to content

Instantly share code, notes, and snippets.

@jonikorpi
Created December 12, 2012 08:45
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jonikorpi/4266172 to your computer and use it in GitHub Desktop.
Save jonikorpi/4266172 to your computer and use it in GitHub Desktop.
Awesome HTML5 placeholder 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)->
unless $(element).val()
$(element).val($(element).attr("placeholder"))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment