Dr_Ogen
Erfahrenes Mitglied
Morgen Leute,
ich hab da ein Problem mit nem Script den ich so per copy&past erstellt hab weil ich keine große Ahnung von JavaScript habe.
Also zum Problem der Script erfüllt zwar seine Pflicht (das Popupo öffnen und die variable senden) aber IE u. Opera meinen der Script einen Fehler hat.
warum ist der Script fehlerhaft?
ich hab da ein Problem mit nem Script den ich so per copy&past erstellt hab weil ich keine große Ahnung von JavaScript habe.
Also zum Problem der Script erfüllt zwar seine Pflicht (das Popupo öffnen und die variable senden) aber IE u. Opera meinen der Script einen Fehler hat.
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>vena-fetishmoden.de</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<script language="javascript">
<!--
function popup(url, breite, hoehe) {
links = (screen.width/2)-(breite/2);
oben = (screen.height/2)-(hoehe/2);
window.open(url,"Shop", "width="+breite+", height="+hoehe+", status = no,toolbar = no,menubar = no,location = no,resizable = no,titlebar = no,scrollbars = no,fullscreen = no,top ="+oben+",left ="+links+"");
}
//-->
</script>
<body>
<p> </p>
<p> </p>
<p align="center" onClick="popup('webshop.php?id=kinder',900,600)"><a href="javascript: Open new page">WEBSHOP</a></p>
</body>
</html>
warum ist der Script fehlerhaft?