Garret Heaton
Mountain View, CA
Sign up for Plaxo to connect with Garret Heaton
- Connect and view Garret Heaton's full profile
- Create your own public profile and show the world who you are
- Share photos, contact info, blogs, and more with family, friends and business connections
Garret Heaton posted a blog entry 1 day ago
Velocity 09: Adam Jacob and Ezra Zygmuntowicz, "Infrastructure in the Cloud Era"
Velocity 09: Adam Jacob and Ezra Zygmuntowicz, "Infrastructure in the Cloud Era": Great talk on server bootstrapping and configuration in the cloud. more »
Garret Heaton shared a blog entry on Google Reader 1 day ago
Garret Heaton shared a blog entry on Google Reader 1 day ago
Garret Heaton posted a blog entry Jun 29, 2009
Focus first empty input element using jQuery
It’s often helpful to auto-focus form elements for users of your site so they don’t have to manually select them with the mouse. I’d been using the following code on a few sites:
function focusFirstInput() {
var inputElements = document.getElementsByTagName('input');
try {
for (var i = 0; i < inputElements.length; i++) {
var e = inputElements[i];
// uses jQuer... more »