Java Script not working for me...
This below is a copy and paste from lesson 1 Javascript. It doesnt work for me. But when I enter the code that w3schools puts out it works...why doesn't the code from the lesson work?
Code from lesson:
<HTML>
<HEAD>
<TITLE>A First Script</TITLE>
</HEAD>
<BODY>
<SCRIPT LANGUAGE="javascript">
documtent.write("Welcome to Siliconindia");
</SCRIPT>
</BODY> </HTML>
</body>
</html>
code from w3schools:
<html>
<body>
<script type="text/javascript">
document.write("This is my first JavaScript!");
</script>
</body>
</html>