Skip to content

Instantly share code, notes, and snippets.

@jdkealy
Forked from anonymous/gist:3092100
Created July 11, 2012 18:23
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 jdkealy/3092163 to your computer and use it in GitHub Desktop.
Save jdkealy/3092163 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
$(document).ready(function(){
$('.jump-to').focus().select();
});
</script>
<form id="edit-jump-to">
<input type="text" name="jump_to" class="jump-to">
<input type="submit" value="jump down">
</form>
@jdkealy
Copy link
Author

jdkealy commented Jul 11, 2012

<script type="text/javascript"> $(document).ready(function(){ $('.jump-to').focus().select(); }); </script>

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