what is this function trying to do?
onload method calls these two functions
[code=javascript]function getHost(){
document.form1. Host.value = document.locati on.host;
}
function getClientTimeZo ne(){
var dt = new Date();
document.form1. ClientTimeZone. value = '' + dt.getTimezoneO ffset();
}[/code]
The above piece of code works well in IE but not in Mozilla
How will I replace this?
onload method calls these two functions
[code=javascript]function getHost(){
document.form1. Host.value = document.locati on.host;
}
function getClientTimeZo ne(){
var dt = new Date();
document.form1. ClientTimeZone. value = '' + dt.getTimezoneO ffset();
}[/code]
The above piece of code works well in IE but not in Mozilla
How will I replace this?
Comment