Skip to content

Instantly share code, notes, and snippets.

@iworkforthem
Last active November 23, 2016 13:21
Show Gist options
  • Save iworkforthem/89a247f8a792c62ca6c133bb17f2430f to your computer and use it in GitHub Desktop.
Save iworkforthem/89a247f8a792c62ca6c133bb17f2430f to your computer and use it in GitHub Desktop.
popup fill screen window.
function popup_full_screen_ads(url)
{
params = 'width='+screen.width;
params += ', height='+screen.height;
params += ', top=0, left=0'
params += ', fullscreen=yes';
newwin=window.open(url,'windowname4', params);
if (window.focus) {newwin.focus()}
return false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment