Created
December 1, 2012 23:10
-
-
Save 0xack13/4185801 to your computer and use it in GitHub Desktop.
Highlight selected text without jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var selection = window.getSelection(); | |
| var range = selection.getRangeAt(0); | |
| var newNode = document.createElement("span"); | |
| newNode.setAttribute("style", "background-color: pink;"); | |
| range.surroundContents(newNode); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment