I'm not sure if this is the right place as I'm referencing JS. I'm new this but I'm trying to learn.
Right now I'm using a script on a page, where the link will resize the window to a certain size.
<SCRIPT>
<!--
function cont()
{
window.resizeTo(900, 750);
window.location="redirect.php";
}
// -->
</SCRIPT>
and the link
<a href="javascript:cont();">link</a>
Leads to redirect.php which contains:
<?php
header( 'Location: http://www.yoursite.com/' ) ;
?>
This works great except on the first page, when the user hovers over the link it says something about JS in the status bar.
Is there a way to achieve the same effect (resize AND redirect) with the status bar saying http://mysite.com/redirect.php?