Mijn popup maakt automatisch van '&' '%26'. Hoe kan ik dit voorkomen? Dit is het script:<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUpmusic(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=351,height=105,left = 200,top = 100');");
}
// End -->
</script>
Dit is het JavaScript:
<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function popUpmusic(URL) {
day = new Date();
id = day.getTime();
eval (window.open(URL));
}
popUpmusic ('jstest.php?titel=titel&urlvideo=De link van deVideo');
</script>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script language="javascript">
<!-- Begin
function popUpmusic(URL) {
day = new Date();
id = day.getTime();
eval (window.open(URL));
}
</script>
</head>
<body>
<a href="javascript:popUpmusic ('jstest.php?titel=titel&urlvideo=De link van deVideo');">klik</a>
</script>
</body>
</html>