domains/remove_print_css.js
[app.webkitpdf] / domains / micetoday.com.js
1
2 (function (args) {
3     var disnone = function(ar) {
4         for (var i =0;i < ar.length;i++) {
5             if (!ar[i]) {
6                 continue;
7             }
8             ar[i].style.display = 'none';
9         }
10     }
11      window.setInterval(function() {
12         console.log("hide advert")
13         disnone([
14                 document.getElementById('sbox-window'),
15                 document.getElementById('sbox-overlay')
16                 
17         ] );
18         document.body.className = ''; // remove the overlay...
19      }, 200);
20         
21 })();