The Basics of JavaScript’s
JavaScript Tutorial at Webdeveloper.com. This tutorial goes over JavaScript basics and provides an excellent overview for the beginner with easy to …
More PDF Content
The Basics of JavaScript’s
This is a simple and nice beginner tutorial of basic javascript.
- What is JavaScript?
- JavaScript IS NOT the same as JAVA!
- Running JavaScript
- Creating JavaScript in Dreamweaver
- Embedding JavaScript using HTML
This ebook show us an example of Displaying automatic page update information like this
- Open a new browser (Netscape or Internet Explorer)
- Open notepad, go to START >PROGRAMS >ACCESSORIES >NOTEPAD
- In the notepad screen, type the following HTML code exactly as it appears:
<HTML>
<HEAD>
<TITLE>Displaying Update Info</TITLE>
</HEAD>
<BODY bgcolor=lightblue>
<script language=”JavaScript”>
<!–hide script from old browsers
document.write(”<h2>This page has been updated: ” +
document.lastModified + “</h2>”);
// end hiding –>
</script >
</BODY>
</HTML> - Save file as sample.html onto the DESKTOP
- Go to your browser window menu, click on FILE>OPEN PAGE >BROWSE >SELECT>sample.html
- Your first JavaScript will appear on your screen – Congratulations!
Processing your request, Please wait....