<html>
<head>
<title>Untitled </title>
<script language="Javas cript">
<!--hide me from older browsers
var seconds_per_min ute=60;
var minutes_per_hou r=60;
var hours_per_day= 24;
var seconds_per_day =
seconds_per_min ute*minutes_per _hour*hours_per _day;
// end hiding stuff-->
</script>
</head>
<body>
<h1>Do you know how many seconds are in a day</h1>
<h2>I Do!</h2>
<h1>My calculations show that</h1>
<script language="Javas cript">
<!--
window.document .write("there are");
window.document .write(seconds_ per_day);
window.document .write("seconds in a day.")
//-->
</script>
</body>
</html>
this is a simple script I know..But i have a question why are the
Write commands lines in a separate script. Can they be out in the
first script, if not why..The second script has something to do with
the first one..
<head>
<title>Untitled </title>
<script language="Javas cript">
<!--hide me from older browsers
var seconds_per_min ute=60;
var minutes_per_hou r=60;
var hours_per_day= 24;
var seconds_per_day =
seconds_per_min ute*minutes_per _hour*hours_per _day;
// end hiding stuff-->
</script>
</head>
<body>
<h1>Do you know how many seconds are in a day</h1>
<h2>I Do!</h2>
<h1>My calculations show that</h1>
<script language="Javas cript">
<!--
window.document .write("there are");
window.document .write(seconds_ per_day);
window.document .write("seconds in a day.")
//-->
</script>
</body>
</html>
this is a simple script I know..But i have a question why are the
Write commands lines in a separate script. Can they be out in the
first script, if not why..The second script has something to do with
the first one..
Comment