Hi all...
i'm currently working for a big project to construct a website.
We need to support some browser and OS : IE 5.0 -> IE 6, Mozilla 1.2
-> 1.7, Opera 5 -> Opéra 7.5x, Netscape 4.75 -> NS 7.2, Safari
and for OS : Win95/98/NT/Me/2000/XP, MacOS 9/10, Linux.
I have some problems with browser on different OS. For example i have
write a javascript who make a automatic submit when the page is
reload.
<script language="Javas cript" for="window" event="onload() ">
if( navigator.userA gent.indexOf("O pera") != -1 ){
setTimeout("doc ument.forms[0].elements['btValider'].click();",1000 );
}
else{
document.forms[0].submit();
}
</script>
This work fine on XP with Mozilla 1.6 but when i try Mozilla 1.6 on
Win98 or NT , i have no refresh and i need to click to the submit
button to send the form....
I'm searching the dependencies between Javascript and OS( or Browser
in different OS ). Someone can help me ??
All infos is accepted :)
Thanks
Regards
Florian Proch
i'm currently working for a big project to construct a website.
We need to support some browser and OS : IE 5.0 -> IE 6, Mozilla 1.2
-> 1.7, Opera 5 -> Opéra 7.5x, Netscape 4.75 -> NS 7.2, Safari
and for OS : Win95/98/NT/Me/2000/XP, MacOS 9/10, Linux.
I have some problems with browser on different OS. For example i have
write a javascript who make a automatic submit when the page is
reload.
<script language="Javas cript" for="window" event="onload() ">
if( navigator.userA gent.indexOf("O pera") != -1 ){
setTimeout("doc ument.forms[0].elements['btValider'].click();",1000 );
}
else{
document.forms[0].submit();
}
</script>
This work fine on XP with Mozilla 1.6 but when i try Mozilla 1.6 on
Win98 or NT , i have no refresh and i need to click to the submit
button to send the form....
I'm searching the dependencies between Javascript and OS( or Browser
in different OS ). Someone can help me ??
All infos is accepted :)
Thanks
Regards
Florian Proch
Comment