January 2001
Beginner
312 pages
6h 4m
English
If you want to do the same thing in Netscape Navigator 4, you can pick up the trail at the point where you were about to add the statements to the JavaScript function in the Internet Explorer example:
<html>
<head>
<title>A Simple Page</title>
<script language="JavaScript">
<!-- Cloaking device on!
function moveTxt()
{
}
// Cloaking device off -->
</script>
</head>
<body>
<div id="ani1" style="position:absolute;left:10;top:10">
Text ... on the go!
</div>
</body>
</html>
As in the previous example, you need to add an if statement. However, this time, the syntax for the expression used is slightly different. This time, you need the following:
<html> <head> <title>A Simple Page</title> <script ...
Read now
Unlock full access