javascript Programming Glossary: sel.addrange
Persisting the changes of range objects after selection in HTML http://stackoverflow.com/questions/13949059/persisting-the-changes-of-range-objects-after-selection-in-html i var sel window.getSelection sel.removeAllRanges sel.addRange range else if document.selection saveSelection function containerEl..
Javascript Contenteditable - set Cursor / Caret to index http://stackoverflow.com/questions/16095155/javascript-contenteditable-set-cursor-caret-to-index i var sel window.getSelection sel.removeAllRanges sel.addRange range else if document.selection setSelectionByCharacterOffsets..
Javascript Highlight Selected Range Button http://stackoverflow.com/questions/1622629/javascript-highlight-selected-range-button 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply BackColor to..
Select a complete table with javascript (to be copied to clipboard) http://stackoverflow.com/questions/2044616/select-a-complete-table-with-javascript-to-be-copied-to-clipboard sel.removeAllRanges try range.selectNodeContents el sel.addRange range catch e range.selectNode el sel.addRange range else.. el sel.addRange range catch e range.selectNode el sel.addRange range else if body.createTextRange range body.createTextRange..
How can I highlight the text of the DOM Range object? http://stackoverflow.com/questions/2582831/how-can-i-highlight-the-text-of-the-dom-range-object 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply BackColor to..
getSelection & surroundContents across multiple tags http://stackoverflow.com/questions/2584301/getselection-surroundcontents-across-multiple-tags 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply BackColor to..
Tag-like autocompletion and caret/cursor movement in contenteditable elements http://stackoverflow.com/questions/2798142/tag-like-autocompletion-and-caret-cursor-movement-in-contenteditable-elements
Insert text at cursor in a content editable div http://stackoverflow.com/questions/2920150/insert-text-at-cursor-in-a-content-editable-div sel window.getSelection sel.removeAllRanges sel.addRange range else if document.selection range.select range.select..
Need to set cursor position to the end of a contentEditable div, issue with selection and range objects http://stackoverflow.com/questions/2940882/need-to-set-cursor-position-to-the-end-of-a-contenteditable-div-issue-with-sele range.setEnd textNode textNode.length sel.removeAllRanges sel.addRange range else if document.selection document.selection.createRange..
Change CSS of selected text using Javascript http://stackoverflow.com/questions/3223682/change-css-of-selected-text-using-javascript 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply BackColor to..
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 false var sel window.getSelection sel.removeAllRanges sel.addRange range else if typeof document.body.createTextRange undefined..
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 node range.collapse false sel.removeAllRanges sel.addRange range else if typeof document.selection undefined document.selection.type..
Android WebView Javascript getSelection http://stackoverflow.com/questions/4892111/android-webview-javascript-getselection 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply BackColor to..
Insert link in contenteditable element http://stackoverflow.com/questions/5605401/insert-link-in-contenteditable-element for var i 0 len savedSel.length i len i sel.addRange savedSel i else if document.selection savedSel.select savedSel.select..
Highlight text range using JavaScript http://stackoverflow.com/questions/6240139/highlight-text-range-using-javascript var sel window.getSelection sel.removeAllRanges sel.addRange range else if document.selection document.body.createTextRange..
How to set caret(cursor) position in contenteditable element (div)? http://stackoverflow.com/questions/6249095/how-to-set-caretcursor-position-in-contenteditable-element-div el.childNodes 2 5 range.collapse true sel.removeAllRanges sel.addRange range IE 9 works completely differently. If you need to support..
wrapping a selected text node with span http://stackoverflow.com/questions/6328718/wrapping-a-selected-text-node-with-span
Insert html at caret in a contenteditable div http://stackoverflow.com/questions/6690752/insert-html-at-caret-in-a-contenteditable-div lastNode range.collapse true sel.removeAllRanges sel.addRange range else if document.selection document.selection.type Control.. else range.collapse true sel.removeAllRanges sel.addRange range else if sel document.selection sel.type Control IE..
|