Hi Can anybody tell me How to move the cursor into a input text box by clicking on html button ?
Try this:
document.getElementById("textbox").focus();
HTML:
<input type="text" id="my_textbox" value="My Text" />
<button id="my_button">Focus</button>
JS:
document.getElementById('my_button').onclick = function() {
document.getElementById('my_textbox').focus();
};
Example:
http://jsfiddle.net/GeoForce/ZnVH7/
You can just do it by using jQuery
as follows:
Include jquery
in HTML HEAD
section then
$( "#button" ).click(function() {
$( "#targetinput" ).focus();
});
Or without jquery you can do it using
getElementByID("targetinput").focus();
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With