javascript Programming Glossary: sel.removeallranges
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 node.childNodes i var sel window.getSelection sel.removeAllRanges sel.addRange range else if document.selection saveSelection..
Javascript Contenteditable - set Cursor / Caret to index http://stackoverflow.com/questions/16095155/javascript-contenteditable-set-cursor-caret-to-index node.childNodes 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 range sel.getRangeAt 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply..
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 range document.createRange sel window.getSelection sel.removeAllRanges try range.selectNodeContents el sel.addRange range catch..
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 range sel.getRangeAt 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply..
getSelection & surroundContents across multiple tags http://stackoverflow.com/questions/2584301/getselection-surroundcontents-across-multiple-tags range sel.getRangeAt 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply..
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 if range if window.getSelection sel window.getSelection sel.removeAllRanges sel.addRange range else if document.selection 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 textNode.length 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 range sel.getRangeAt 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply..
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 el range.collapse false var sel window.getSelection sel.removeAllRanges sel.addRange range else if typeof document.body.createTextRange..
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 range.selectNodeContents node range.collapse false sel.removeAllRanges sel.addRange range else if typeof document.selection undefined..
Android WebView Javascript getSelection http://stackoverflow.com/questions/4892111/android-webview-javascript-getselection range sel.getRangeAt 0 document.designMode on if range sel.removeAllRanges sel.addRange range Use HiliteColor since some browsers apply..
Insert link in contenteditable element http://stackoverflow.com/questions/5605401/insert-link-in-contenteditable-element savedSel if window.getSelection sel window.getSelection sel.removeAllRanges for var i 0 len savedSel.length i len i sel.addRange savedSel..
Highlight text range using JavaScript http://stackoverflow.com/questions/6240139/highlight-text-range-using-javascript break charCount endCharCount 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 range.setStart el.childNodes 2 5 range.collapse true sel.removeAllRanges sel.addRange range IE 9 works completely differently. If you..
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 range.setStartAfter lastNode range.collapse true sel.removeAllRanges sel.addRange range else if document.selection document.selection.type.. firstNode else range.collapse true sel.removeAllRanges sel.addRange range else if sel document.selection sel.type..
Prevent text selection after double click http://stackoverflow.com/questions/880512/prevent-text-selection-after-double-click else if window.getSelection var sel window.getSelection sel.removeAllRanges You can also apply these styles to the span for all non IE..
|