Ok I'm just starting javascripting and going straight from my new book! I get an error in the if statement saying object expected. What object? Thx
<script language="javaScript">
<!--
If (confirm("Do you want to know the time?"));
{
display()
}
function display() {
var now = new Date()
var hours = now.getHours()
var Minutes = now.getMinutes()
var Seconds = now.getSeconds()
var current_Time = hours + ":" + Minutes + ":" + Seconds
alert(" Time is:" + current_Time)
}
//-->
</script>
<script language="javaScript">
<!--
If (confirm("Do you want to know the time?"));
{
display()
}
function display() {
var now = new Date()
var hours = now.getHours()
var Minutes = now.getMinutes()
var Seconds = now.getSeconds()
var current_Time = hours + ":" + Minutes + ":" + Seconds
alert(" Time is:" + current_Time)
}
//-->
</script>