Skip to content

Instantly share code, notes, and snippets.

@adamsilver
Created October 28, 2010 13:06
Show Gist options
  • Save adamsilver/651291 to your computer and use it in GitHub Desktop.
Save adamsilver/651291 to your computer and use it in GitHub Desktop.
<html>
<head>
<style>
#wrapper {
display: none; /* visibility: hidden; causes the same issue*/
}
</style>
<script type="text/javascript">
window.onload = function() {
document.getElementById("textBox").focus();
}
</script>
</head>
<body>
<h1>Focus on hidden element</h1>
<div id="wrapper">
<input type="text" id="textBox" />
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment