Set cursor at a length of 14 onfocus of a textbox

IE use different approach at setting cursor position than Firefox,Opera and Chrome. It’s better to make a helper function, which will do it for you. I use this one for own needs. function setCursor(node,pos){ node = (typeof node == “string” || node instanceof String) ? document.getElementById(node) : node; if(!node){ return false; }else if(node.createTextRange){ var textRange … Read more