i'm running into a weird issue where when i click to preview my lander in LeadImpact my iframed coreg path reloads in the main window.
Not only does this make the page susceptible to bidding (people are bidding on gtoffer domains), it activates my exitpop script.
If i copy and past the code into a new window, everything works as expected and the coreg path remains in the iframe on my own domain. I've tested this on different machines, with and without hotbar.
I'm wondering if this issue has to do with how LeadImpact serves their popups as well as the interaction with GT's coreg path.
I can't run my campaign until i get this fixed because i will continue to get popped over.
Does anyone else on GT see this happening with their lander preview in Lead Impact?
I noticed something like this, and the problem seemed to be that the area that I was putting the coreg iframe was too small.
try adding this script to the page with your coreg iframe path on it:
<script type="text/javascript">
function maximize() {
window.moveTo(0, 0);
window.resizeTo(screen.width, screen.height);
}
maximize();
</script>
#iFrameWrapper
{
margin:0px auto;
width:850px;
height:900px;
background:#fff;
}