Skip to content

Instantly share code, notes, and snippets.

@Comandeer
Created July 11, 2014 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Comandeer/3d4ac3ba531398bfefc3 to your computer and use it in GitHub Desktop.
Save Comandeer/3d4ac3ba531398bfefc3 to your computer and use it in GitHub Desktop.
Gemius style popup
(function()
{
var fn = function fn()
{
window.open('test.php', 'intruder', 'menubar=no,location=no,resizable=no,scrollbars=no,status=no,width=400,height=500');
document.removeEventListener('click',fn);
};
document.addEventListener('click',fn);
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment