21. februar 2001 - 14:22
Der er
2 kommentarer og 1 løsning
javascript på mac
Hvorfor virker min kode ikke på en mac med netscape 4.7 <script language=JavaScript> <!--Screensize script if (window.screen.width < 800) window.location=\"html/640.htm\" else if (window.screen.width < 1024) window.open( \'html/frameset.htm\', \"_blank\",\"toolbar=yes,location=yes,status=no,menubar=no,resizable=yes\" ).focus(); else window.location=\"html/frameset.htm\" --> </script> ;-) far-hest
Annonceindlæg fra Infor
22. marts 2001 - 02:11
#1
Prøv den her i stedet. <script language=JavaScript> <!--Screensize script if (screen.availWidth < 800) window.location=\"html/640.htm\" else if (screen.availWidth < 1024) window.open( \'html/frameset.htm\', \"_blank\",\"toolbar=yes,location=yes,status=no,menubar=no,resizable=yes\" ).focus(); else window.location=\"html/frameset.htm\" --> </script>