Is there a javascript function that will allow me to capture the text that is currently highlighted with the cursor and store it in a variable? I’ve been trying document.selection.createRange().text but this hasn’t been working. Are there any possible alternatives? Here’s the code:
function moremagic(){
var output = document.selection.createRange();
alert("I Work!");}
When I run the function, it doesn’t make it to the write statement so I know something is wrong.
Ungraciously stolen from another question:
Use this in a “onClick” function or whatever and it will return the selected text in almost any browser.