Skip to content

Instantly share code, notes, and snippets.

@Echostream
Last active July 7, 2016 18:11
Show Gist options
  • Save Echostream/fe560aa30271172398cf432b7b281fd5 to your computer and use it in GitHub Desktop.
Save Echostream/fe560aa30271172398cf432b7b281fd5 to your computer and use it in GitHub Desktop.
Enable gi to focus the first text box on the whole web page by SurfingKeys
mapkey('gi', 'test', function() {
var inputs = document.getElementsByTagName('input');
var input = null;
for(var i=0; i<inputs.length; i++) {
if(inputs[i].type=='text') {
input = inputs[i];
break;
}
}
if(input) {
input.click();
input.focus();
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment