Simple HTML/JavaScript Editor - Interpreter
In the text window you see a text of the HTML and javascript example
You can enter and modify html/ JavaScript
To return from the program, use BACK button of the browser or close the extra window in some browsers.
Clear the input
The simple idea of HTML + Javascript Editor + interpreter is originally by Richard Bowles http://richardbowles.tripod.com/edres/editor.htm
// This is the javascript running this page
script language="JavaScript"
function clean_input()
{
myInputWindow.theInsertedText.value="";
}
function Execute_the_Code ()
{
var ScriptInput = myInputWindow.theInsertedText.value;
document.write(ScriptInput);
}