anoniem Geplaatst: 28 april 2002 Delen Geplaatst: 28 april 2002 Waarom werk dit scrip niet? (bij mij altans) <script language="JavaScript1.2"> <!-- var correctwidth=1024 var correctheight=768 if (screen.width<correctwidth||screen.height<correctheight) document.write("This webpage is bested viewed with screen resolution "+correctwidth+"*"+correctheight+" or above. Your current resolution is "+screen.width+"*"+screen.height+". If possible, please change the resolution!") //--> </script> Quote Link naar reactie
anoniem Geplaatst: 28 april 2002 Auteur Delen Geplaatst: 28 april 2002 Volgens mij zit de fout in het gebruik van de haakjes in de if-regel. Probeer dit eens: [code:1:5a3adf61a0] if ((screen.width < correctwidth) || (screen.height < correctheight)) [/code:1:5a3adf61a0] Quote Link naar reactie
anoniem Geplaatst: 28 april 2002 Auteur Delen Geplaatst: 28 april 2002 [code:1:c727b5c6cf] <script language="JavaScript1.2"> <!-- var correctwidth = 1024; var correctheight = 768; if (screen.width<correctwidth || screen.height<correctheight) { document.write("This webpage is bested viewed with screen resolution " + correctwidth + "*"+ correctheight + " or above. Your current resolution is " + screen.width + "*" + screen.height + ". If possible, please change the resolution!"); } //--> </script> [/code:1:c727b5c6cf] Daarnaast schrijf je "bested" toch echt als "best"... _________________ Waar blijft mijn glazen bol? [ Dit bericht is bewerkt door: Bill Gates op 2002-04-28 20:35 ] Quote Link naar reactie
anoniem Geplaatst: 28 april 2002 Auteur Delen Geplaatst: 28 april 2002 Heeeeeeel erg bedankt het werkt eindelijk. Verry Happy Me :smile:)))))))) het waren de haakjes die het probleem veroorzaakte :smile: Bedankt!!!!!!! Quote Link naar reactie
Aanbevolen berichten
Om een reactie te plaatsen, moet je eerst inloggen