Hey guys,
I know this question has been asked and answered in the past, the last threat I found on this topic was 2 years old so I was thinking I'll ask around if something has changed in the meantime and if you guys have any input or ideas.
Is it still possible to resize the LeadImpact pops to a full size window, or even to pop a new full page within the LeadImpact Pop. Basically any kind of java magic that will maximize the window to stick out.
I know that LeadImpact does not allow that and I am familiar with the risks of doing such a thing.
Thanks in advance
brainbug
Try the following:
<script type="text/javascript">
window.onload = maxWindow;
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;
}
}
}
</script>