I am using autosurf website to get traffic to my website. People dont view my website and just minimize the window. I want a script which can Automatically Maximize my website when it loads.
I am using autosurf website to get traffic to my website. People dont view my website and just minimize the window. I want a script which can Automatically Maximize my website when it loads.
<script language="JavaScript">
window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);
</script>
that should do it
I hope this works.
Edit:
It is not working
Last edited by bilal855; 03-07-2008 at 09:46 AM. Reason: Automerged Doublepost
if this is a link into your website, try adding that script to the "onload"
Placed in the header.Code:<script language="JavaScript" type="text/JavaScript"> function makeBIG(){ window.moveTo(0,0); window.resizeTo(screen.width,screen.height); } </script>
then add:
HTML Code:<body onload="makeBIG()">
"You cannot teach a man anything, you can only help him to find it for himself." -- Galileo Galilei