Home >
Paid Traffic Sources >
POP / PPV / Redirect
Opening Landers at 100% (5)
12-23-2011 07:25 PM
#1
paycoguy (Member)
Opening Landers at 100%
I know someone posted the code to this somewhere but after 10 minutes of searching, I still can't find it.
Basically, my funnel is like this: Presell Pop --> LP --> Offer page
So...how do I make my LP open at 100% once the user clicks through from the pop?
12-23-2011 07:38 PM
#2
nusolutionz (Veteran Member)
at 100% size? easiest way is to open the lp in a new window...to do so just add target="blank" to your links on the presell pop
12-23-2011 08:08 PM
#3
harrypotter (Member)
@paycoguy --> http://stmforum.com/forum/showthread...ge-window-(PPV)
code from gallox
Code:
function maxWindow() {
window.moveTo(0, 0);
if (document.all) {
top.window.resizeTo(screen.availWidth, screen.availHeight);
}
else if (document.layers || document.getElementById) {
if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth) {
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
12-24-2011 04:14 PM
#4
paycoguy (Member)

Originally Posted by
harrypotter
@paycoguy -->
http://stmforum.com/forum/showthread...ge-window-(PPV)
code from
gallox
Code:
function maxWindow() {
window.moveTo(0, 0);
if (document.all) {
top.window.resizeTo(screen.availWidth, screen.availHeight);
}
else if (document.layers || document.getElementById) {
if (top.window.outerHeight < screen.availHeight || top.window.outerWidth < screen.availWidth) {
top.window.outerHeight = screen.availHeight;
top.window.outerWidth = screen.availWidth;
}
}
}
Thanks. Where do you put this code?
Also, has anyone figured out if loading in the same window has a better CTR than simply using target_blank to load in another?
12-25-2011 04:27 AM
#5
harrypotter (Member)

Originally Posted by
paycoguy
Thanks. Where do you put this code?
you can put the code in the body or the head, as long as it is above where you call the function (i believe)
See post:
http://stmforum.com/forum/showthread...ll=1#post11578
<a href="xxxx.php" target="_self" onclick="maxWindow()"/><img src="im.jpeg" width="183" height="217"alt="free ipad" /></a>
Basically, you want to call the function maxWindow() and in the case above, it is being called when someone clicks on the link. With the same window because it is _self, it will resize to maximum available screen area

Originally Posted by
paycoguy
Also, has anyone figured out if loading in the same window has a better CTR than simply using target_blank to load in another?
nope... still don't know... post on the thread again to bump that?
Home >
Paid Traffic Sources >
POP / PPV / Redirect