HTML interesse |
|
Jo...
Ik heb een link:
die gaat naar het script:
function wwLeeg()
{
question = confirm("Winkelwagen leegmaken?")
if (question != "0")
{
goto('session_destroy.php');
}
}
function wwLeeg() { question = confirm("Winkelwagen leegmaken?") if (question != "0") { goto('session_destroy.php'); } }
maar hij gaat niet naar session_destroy.php
goto script:
function goto(url)
{
document.location.href = url;
}
function goto(url) { document.location.href = url; }
In Firefox doet ie t wel :S
|