Also known as a takeover. Do you know how long I’ve been looking for this?
(function($){
$(document).ready(function(){
$(document).click(function(e){
if(e.target.nodeName == "HTML" || e.target.nodeName == "BODY"){
window.open('http://www.google.com/');
}
})
})
})(jQuery);
Place this between some script tags. I paste the entire code immediately after the open body tag. And don’t forget to change the google url to where you’re redirecting the user when clicked.Caveat: body has to be totally exposed. Meaning if you have a transparent layer height and width 100% then it’s covering body. Remember to upload your image and fix it with some css like:
body {background:#color url(image.jpg) top center no-repeat fixed;}
(Source: blackblogmedia.com)






