How do I programmatically click on an input box to make it become activated. I'm doing scripting through Developer Tools. Any help would be appreciated!
I have tried .focus() and .click() properties like:
document.getElementById("myText").focus();
fiddle at http://jsfiddle.net/nep95vzj/ but it doesn't do anything.