| javascript Programming Glossary: textrange.collapsePersisting the changes of range objects after selection in HTML http://stackoverflow.com/questions/13949059/persisting-the-changes-of-range-objects-after-selection-in-html  textRange.moveToElementText containerEl textRange.collapse true textRange.moveEnd character savedSel.end textRange.moveStart.. 
 Javascript Contenteditable - set Cursor / Caret to index http://stackoverflow.com/questions/16095155/javascript-contenteditable-set-cursor-caret-to-index  textRange.moveToElementText containerEl textRange.collapse true textRange.moveEnd character end textRange.moveStart character.. 
 Set cursor at a length of 14 onfocus of a textbox http://stackoverflow.com/questions/1865563/set-cursor-at-a-length-of-14-onfocus-of-a-textbox  if node.createTextRange var textRange node.createTextRange textRange.collapse true textRange.moveEnd pos textRange.moveStart pos textRange.select.. 
 contenteditable, set caret at the end of the text (cross-browser) http://stackoverflow.com/questions/4233265/contenteditable-set-caret-at-the-end-of-the-text-cross-browser  textRange.moveToElementText el textRange.collapse false textRange.select placeCaretAtEnd document.getElementById.. 
 Set caret position right after the inserted element in a contentEditable div http://stackoverflow.com/questions/4834793/set-caret-position-right-after-the-inserted-element-in-a-contenteditable-div  ' id ' span ' var textRange document.selection.createRange textRange.collapse false textRange.pasteHTML html var markerSpan document.getElementById.. 
 Full text search in HTML ignoring tags / & http://stackoverflow.com/questions/5886858/full-text-search-in-html-ignoring-tags 
 Highlight text range using JavaScript http://stackoverflow.com/questions/6240139/highlight-text-range-using-javascript  textRange.moveToElementText el textRange.collapse true textRange.moveEnd character end textRange.moveStart character.. 
 |