blackcell Posted May 7, 2008 Share Posted May 7, 2008 I am wanting to send pageup and home with javascript. I am not for sure how to send keys though. Quote Link to comment Share on other sites More sharing options...
rarebit Posted May 7, 2008 Share Posted May 7, 2008 Have a look here Quote Link to comment Share on other sites More sharing options...
blackcell Posted May 8, 2008 Author Share Posted May 8, 2008 I may have overlooked something but I found nothing on inserting keystrokes. Quote Link to comment Share on other sites More sharing options...
blackcell Posted May 8, 2008 Author Share Posted May 8, 2008 Ok, maybe I should ask of something easier. I want to set focus to a textfield with text in it, but instead of the insertion point being the end of the text field I want it to be the beginning. Quote Link to comment Share on other sites More sharing options...
bibby Posted May 11, 2008 Share Posted May 11, 2008 ah, then that'd be a Range. Here are some fns that came from quirksmode function getcaret(elm) { var caret = 0; // IE Support if (document.selection) { elm.focus (); var sel = document.selection.createRange (); sel.moveStart ('character', -elm.value.length); caret = Sel.text.length; } // Firefox support else if (elm.selectionStart || elm.selectionStart == '0') caret = elm.selectionStart; return (caret); }; function setcaret(elm, pos) { if(elm.setSelectionRange) { elm.focus(); elm.setSelectionRange(pos,pos); } else if (elm.createTextRange) { var range = elm.createTextRange(); range.collapse(true); range.moveEnd('character', pos); range.moveStart('character', pos); range.select(); } }; So your textarea might look like this to set the caret at the start when clicked. <textarea name="foo" onfocus="setcaret(this,0)">asdf asdf asdf asdf </textarea> Quote Link to comment Share on other sites More sharing options...
blackcell Posted May 12, 2008 Author Share Posted May 12, 2008 Thanks, worked like a charm. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.