Link to sectionFocus on a text field
by YuHan Chien
HTML
<!-- Learn about this code on MDN: https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/focus -->
<div>
<img type="text" id="myTextField" value="Text field." src=https://ibank.firstbank.com.tw/NetBank/loadloginArea.html">
</div>
<p></p>
<button type="button" onclick="focusMethod()">Click me to focus on the text field!</button>
JavaScript
focusMethod = function getFocus() {
document.getElementById("myTextField").focus();
}