Skip to content

Instantly share code, notes, and snippets.

@cjwd-snippets
Created July 15, 2013 16:42
Show Gist options
  • Save cjwd-snippets/6001442 to your computer and use it in GitHub Desktop.
Save cjwd-snippets/6001442 to your computer and use it in GitHub Desktop.
Simple input placeholder fallback
<input id="q" autofocus>
<script>
if (!("autofocus" in document.createElement("input"))) {
document.getElementById("q").focus();
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment