Auto Window Maximizing Script

bilal855

New Member
Messages
74
Reaction score
0
Points
0
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.
 

diabolo

Community Advocate
Community Support
Messages
1,682
Reaction score
32
Points
48
<script language="JavaScript">

window.moveTo(0,0);
window.resizeTo(screen.width,screen.height);

</script>

that should do it
 

bilal855

New Member
Messages
74
Reaction score
0
Points
0
I hope this works.
Edit:
It is not working
 
Last edited:

orthiac

New Member
Messages
30
Reaction score
0
Points
0
if this is a link into your website, try adding that script to the "onload"
Code:
<script language="JavaScript" type="text/JavaScript">
function makeBIG(){
	window.moveTo(0,0);
	window.resizeTo(screen.width,screen.height);
}
</script>
Placed in the header.

then add:
HTML:
<body onload="makeBIG()">
 
Top