I am wondering if it is possible to call a script through a redirect. I have a contact form using PHP mail that echos a redirect back to the home page, like so;
...
header("Location: ../index.php");
...
Is it possible to add an onload event that gets passed to the redirected page? So when "index.php" is loaded from the redirect it calls a pop up thank you or something like that.