Re: accessing the editor's text in javascript (ASP version!)

  •  01-27-2005, 4:36 AM

    Re: accessing the editor's text in javascript (ASP version!)

    My apologies!
     
    After a more thorough search, I found exactly the answer I needed in a post from Adam:

    function getHTML() {
     
     //Editor1 is the ID of the Editor
     var editor = document.getElementById("Editor1_editBox");
     alert(editor.innerHTML);

    }

    I didn't know about that "_editBox" part!

    Thanks Adam!
     
     
View Complete Thread