B
!!bogus
The following is the contents of test.htm
<html>
<body>
<script type="text/javascript" src="./test.js"></script>
</body>
</html>
the following is the contents of test.js
document.open()
document.write("<html><BR>")
document.write("<h1>test</h1><BR>")
document.write("</html>")
I would like to have to code in test.js execute instead of being printed.
How can I do that?
<html>
<body>
<script type="text/javascript" src="./test.js"></script>
</body>
</html>
the following is the contents of test.js
document.open()
document.write("<html><BR>")
document.write("<h1>test</h1><BR>")
document.write("</html>")
I would like to have to code in test.js execute instead of being printed.
How can I do that?