Re: Retrieving selected text

  •  07-05-2007, 12:11 PM

    Re: Retrieving selected text

    I have version 6.0 here so I guess there's no "_Format" function for me.

    I hope I'm missing something because I've had no luck using ranges and CuteEditor together. The following javascript works fine on a little test page I made, but in CuteEditor it doesn't grab anything.

    tmp = document.selection.createRange();
    strSelText = tmp.text;
    alert(strSelText);

View Complete Thread