Window JavaScript Tutorial

< html> 
 
Writing to Same Doc 
 
function reWrite() { 
    var newContent = "title"; 
    newContent += "

This document is brand new.

"; 
    newContent += "Click the Back button to see original document."; 
    newContent += ""; 
    
    document.write(newContent); 
    document.close();