Get current cursor position in a textbox
It looks OK apart from the space in your ID attribute, which is not valid, and the fact that you’re replacing the value of your input before checking the selection. function textbox() { var ctl = document.getElementById(‘Javascript_example’); var startPos = ctl.selectionStart; var endPos = ctl.selectionEnd; alert(startPos + “, ” + endPos); } <input id=”Javascript_example” name=”one” … Read more