Skip to content

Instantly share code, notes, and snippets.

@hogelog
Created May 23, 2010 18:39
Show Gist options
  • Save hogelog/411152 to your computer and use it in GitHub Desktop.
Save hogelog/411152 to your computer and use it in GitHub Desktop.
//let inactiveTextboxes = ["keysnail-prompt-textbox", "urlbar", ...];
let inactiveTextboxes = ["keysnail-prompt-textbox"];
let doc = document;
if (doc.getElementById("content")) {
for each (let id in inactiveTextboxes) {
let box = doc.getElementById(id);
let input = doc.getAnonymousElementByAttribute(box, 'anonid', 'input');
if (input)
input.style.imeMode = "inactive";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment