javascript Programming Glossary: document.selection.type
HTML of selected text http://stackoverflow.com/questions/4176923/html-of-selected-text else if typeof document.selection undefined if document.selection.type Text html document.selection.createRange .htmlText return..
Javascript: how to un-surroundContents range http://stackoverflow.com/questions/4479151/javascript-how-to-un-surroundcontents-range else if document.selection document.selection.createRange document.selection.type None IE case range document.selection.createRange range.execCommand..
Return HTML from a user selection http://stackoverflow.com/questions/4652734/return-html-from-a-user-selection else if typeof document.selection undefined if document.selection.type Text html document.selection.createRange .htmlText return..
Javascript: How to detect if a word is highlighted http://stackoverflow.com/questions/4712310/javascript-how-to-detect-if-a-word-is-highlighted .toString else if typeof document.selection undefined document.selection.type Text text document.selection.createRange .text return text function..
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 else if typeof document.selection undefined document.selection.type Control var html node.nodeType 1 node.outerHTML node.data var..
window.getSelection return html [duplicate] http://stackoverflow.com/questions/5222814/window-getselection-return-html else if typeof document.selection undefined if document.selection.type Text html document.selection.createRange .htmlText return..
Get the Highlighted/Selected text http://stackoverflow.com/questions/5379120/get-the-highlighted-selected-text window.getSelection .toString else if document.selection document.selection.type Control text document.selection.createRange .text return text..
javascript replace selection all browsers http://stackoverflow.com/questions/5393922/javascript-replace-selection-all-browsers child range.insertNode node else if document.selection document.selection.type Control IE 8 and below range document.selection.createRange..
Insert link in contenteditable element http://stackoverflow.com/questions/5605401/insert-link-in-contenteditable-element links i linkRange.detach else if document.selection document.selection.type Control range document.selection.createRange containerEl range.parentElement..
how to get selection inside a div using jquery/javascript http://stackoverflow.com/questions/5801347/how-to-get-selection-inside-a-div-using-jquery-javascript else if typeof document.selection undefined document.selection.type Text var selTextRange document.selection.createRange var textRange..
How to get selected(user-highlighted) text in contenteditable element and replace it? http://stackoverflow.com/questions/6251937/how-to-get-selecteduser-highlighted-text-in-contenteditable-element-and-replac else if typeof document.selection undefined if document.selection.type Text html document.selection.createRange .htmlText alert html..
Insert html at caret in a contenteditable div http://stackoverflow.com/questions/6690752/insert-html-at-caret-in-a-contenteditable-div sel.addRange range else if document.selection document.selection.type Control IE 9 document.selection.createRange .pasteHTML html..
|