Skip to content

Instantly share code, notes, and snippets.

@gscottolson
Forked from jonikorpi/gist:4266172
Created December 12, 2012 13:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gscottolson/4267666 to your computer and use it in GitHub Desktop.
Save gscottolson/4267666 to your computer and use it in GitHub Desktop.
# 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