Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Adblock detect

Asked Modified Viewed 4,410 times
B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
asked
Member

Is there anyway to add "Adblock detect"?
so peoples wont see the content of the site if they not pause or inactivate adblocker?
and make a notice that says someting like "this page finances by the ads" or someting?
0 replies

11 posts

D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
answered
Member

how to make it work on Php fusion on all pages?
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

https://codepen.io/mariusbalaj/pen/Ma...pen/MaEdpx you test this


in theme style.css

/* Adi.js CSS ====== */

.jquery-adi {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    background: rgba(0, 0, 0, .75);
    z-index: 999999;
}

.jquery-adi_content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    padding: 30px 40px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-left: -160px;
    box-sizing: border-box;
}

.jquery-adi_content h2,
.jquery-adi_content p,
.jquery-adi_content button {
    padding: 0;
    margin: 0;
}

.jquery-adi_content button {
    position: absolute;
    right: -15px;
    top: -15px;
    border: 0;
    outline: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #d5d5d5;
    background-image: url('https://raw.githubusercontent.com/balajmarius/adi.js/master/icn_close.png');
    background-repeat: no-repeat;
    background-position: 0 0;
    box-shadow: -2px 2px 8px rgba(148, 146, 145, 0.3);
}

.jquery-adi_content h2 {
    color: #e76e65;
    font-size: 22px;
    font-weight: bold;
}

.jquery-adi_content h2:before {
    content: "";
    width: 80px;
    height: 80px;
    background-color: #e76e65;
    background-image: url('https://raw.githubusercontent.com/balajmarius/adi.js/master/icn_danger.png');
    background-position: 0 0;
    background-repeat: no-repeat;
    display: block;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.jquery-adi_content p {
    font-size: 14px;
    color: #989898;
    line-height: 1.4;
    margin: 10px 0;
}


/* Dark Theme ====== */

.jquery-adi.dark .jquery-adi_content {
    background: #1F1F1F;
}

.jquery-adi.dark .jquery-adi_content h2 {
    color: #FF4335;
}

.jquery-adi.dark .jquery-adi_content h2:before {
   background-color: #FF4335;
   background-position: bottom center;
}

.jquery-adi.dark .jquery-adi_content p {
    color: #ffffff;
}

.jquery-adi.dark .jquery-adi_content button {
   background-color: #ffffff;
   background-position: bottom left;
}

/* End Adi.js CSS ====== */

body {
  text-align:center;
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
}

.container {
  width:500px;
  margin: 50px auto;
}

.container h3 {
  margin: 0 0 15px;
}


java

/**
 * Adi.js
 */

;(function($) {

  'use strict';

  var Adi;

  $.adi = function(args) {

    /**
     * Merge defaults with user options
     */

    var options = $.extend({}, Adi.defaults, args);
    return new Adi(options);
  };

  /**
   * Constructor
   */

  Adi = function(args) {

    /**
     * Merge this with user options
     */

    $.extend(this, args);

    if (this._check()) {
      this._init();
      this.active();
    }

    if (!this._check()) {
      this.inactive();
    }
  };

  /**
   * Check for $.adblock
   */

  Adi.prototype._check = function() {
    return $.adblock === undefined
  };

  /**
   * Start plugin   
   */

  Adi.prototype._init = function() {
    this._append();
  };

  /**
   * Set template
   */

  Adi.prototype._setTemplate = function(title, content) {

    return '<div class="jquery-adi">' +
      '<div class="jquery-adi_content">' +
      '<button class="jquery-adi_close"></button>' +
      '<h2>' + title + '</h2>' +
      '<p>' + content + '</p>' +
      '</div>' +
      '</div>';
  };

  /**
   * Append html
   */

  Adi.prototype._append = function(callback) {

    this.$el = $(this._setTemplate(this.title, this.content)).appendTo($(document.body)).addClass(this.theme);
    this._show();
  };

  /**
   * Show modal
   */

  Adi.prototype._show = function() {

    var that = this;

    this.$el.show();
    this._center();
    this._controls();

    this.onOpen(this.$el);
  };

  /**
   * Modal controls
   */

  Adi.prototype._controls = function() {

    var that = this;

    function close() {
      that.$el.hide();
      that.onClose(that.$el);
    }

    this.$el.on('click', '.jquery-adi_close', close);
    $(document).on('keyup', function(e) {
      if (e.keyCode == 27)
        close();
    });
  };

  /**
   * Center modal
   */

  Adi.prototype._center = function() {
    var $modal = this.$el.find('.jquery-adi_content');
    $modal.css('margin-top', -Math.abs($modal.outerHeight() / 2));
  };

  /**
   * Defaults
   */

  Adi.defaults = {
    title: 'Adblock detected!',
    content: 'We noticed that you may have an Ad Blocker turned on. Please be aware that our site is best experienced with Ad Blockers turned off.',
    theme: 'light',
    onOpen: function() {},
    onClose: function() {},
    active: function() {},
    inactive: function() {}
  };

})(jQuery);

/*==========================
      End plugin
===========================*/

$(document).ready(function() {

  $.adi({
    theme: 'dark',
    onOpen: function(el) {
      /* $.adi working with animate.css */
      el.find('.jquery-adi_content').addClass('animated bounceInDown')
    },
    onClose: function(el) {
      /**
       * Redirect
       * ========
       * window.location.href('http://some-website')
       *
       * Dont let user to see content / reload page
       * ==========================================
       * window.location.reload(true);
       */
    },
    inactive: function() {

      var tpl = '<h3>You cool, G.</h3>' +
        '<img src="//media.giphy.com/media/POWvddaQEHrgc/giphy.gif" />';

      $('.container').append(tpl);

      console.log('Adblock not detected :)');
    },
    active: function() {

      var tpl = '<h3>You not cool, G</h3>' +
        '<img src="//media.giphy.com/media/4lhJQOACaIfWU/giphy.gif" />';

      $('.container').append(tpl);

      console.log('Adblock detected :(')
    }
  });

});


and this in theme.php

in header


echo "<div class='container'></div>";


download export

https://codepen.io/mariusbalaj/share/...ip/MaEdpx/
0 replies
B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
answered
Member

where should i put java code?
0 replies
B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
answered
Member

could you please tell me to put everything? xD
0 replies
B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
answered
Member

i dont know where to put the script from hiar...
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

I tried the latter no work I will look if I find something
0 replies
D
dimki
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
answered
Senior Member

ok https://blockadblock.com/getcustombab...tombab.php

/themes/templates/ footer.php
this
[code] require_once INCLUDES."adblocker.html";

before echo "</head>\n<body>\n";


and download
adblocker.html
in root / includes
dimki attached the following file:
adblocker.zip [No information available / 224 Downloads]
0 replies
B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
answered
Member

i visit your link, i did make a costom adblocker!
i paste the script code before </body>
in footer.php in /themes/templates/

is seems to not work,

<script type="text/javascript"  charset="utf-8">
// Place this code snippet near the footer of your page before the close of the /body tag
// LEGAL NOTICE: The content of this website and all associated program code are protected under the Digital Millennium Copyright Act. Intentionally circumventing this code may constitute a violation of the DMCA.
                           
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}(';k N=\'\',2c=\'2a\';1P(k i=0;i<12;i++)N+=2c.U(D.K(D.I()*2c.F));k 2r=11,2o=4F,2p=4E,2i=4D,2E=B(t){k i=!1,o=B(){z(q.1m){q.2G(\'2K\',e);E.2G(\'1W\',e)}P{q.2H(\'2L\',e);E.2H(\'24\',e)}},e=B(){z(!i&&(q.1m||4B.2v===\'1W\'||q.2I===\'2J\')){i=!0;o();t()}};z(q.2I===\'2J\'){t()}P z(q.1m){q.1m(\'2K\',e);E.1m(\'1W\',e)}P{q.2M(\'2L\',e);E.2M(\'24\',e);k n=!1;2N{n=E.4y==4x&&q.1Y}2P(a){};z(n&&n.2O){(B r(){z(i)G;2N{n.2O(\'17\')}2P(e){G 4v(r,50)};i=!0;o();t()})()}}};E[\'\'+N+\'\']=(B(){k t={t$:\'2a+/=\',4u:B(e){k r=\'\',d,n,i,c,s,l,o,a=0;e=t.e$(e);1c(a<e.F){d=e.16(a++);n=e.16(a++);i=e.16(a++);c=d>>2;s=(d&3)<<4|n>>4;l=(n&15)<<2|i>>6;o=i&63;z(2F(n)){l=o=64}P z(2F(i)){o=64};r=r+T.t$.U(c)+T.t$.U(s)+T.t$.U(l)+T.t$.U(o)};G r},14:B(e){k n=\'\',d,l,c,s,a,o,r,i=0;e=e.1s(/[^A-4r-4e-9\\+\\/\\=]/g,\'\');1c(i<e.F){s=T.t$.1H(e.U(i++));a=T.t$.1H(e.U(i++));o=T.t$.1H(e.U(i++));r=T.t$.1H(e.U(i++));d=s<<2|a>>4;l=(a&15)<<4|o>>2;c=(o&3)<<6|r;n=n+O.S(d);z(o!=64){n=n+O.S(l)};z(r!=64){n=n+O.S(c)}};n=t.n$(n);G n},e$:B(t){t=t.1s(/;/g,\';\');k n=\'\';1P(k i=0;i<t.F;i++){k e=t.16(i);z(e<1B){n+=O.S(e)}P z(e>4p&&e<4o){n+=O.S(e>>6|4n);n+=O.S(e&63|1B)}P{n+=O.S(e>>12|2T);n+=O.S(e>>6&63|1B);n+=O.S(e&63|1B)}};G n},n$:B(t){k i=\'\',e=0,n=4m=1C=0;1c(e<t.F){n=t.16(e);z(n<1B){i+=O.S(n);e++}P z(n>4l&&n<2T){1C=t.16(e+1);i+=O.S((n&31)<<6|1C&63);e+=2}P{1C=t.16(e+1);2W=t.16(e+2);i+=O.S((n&15)<<12|(1C&63)<<6|2W&63);e+=3}};G i}};k r=[\'4j==\',\'4i\',\'4h=\',\'4g\',\'4f\',\'4G=\',\'4s=\',\'4H=\',\'4Y\',\'5c\',\'5b=\',\'5a=\',\'59\',\'58\',\'57=\',\'56\',\'55=\',\'54=\',\'53=\',\'52=\',\'51=\',\'4Z=\',\'4X==\',\'4J==\',\'4W==\',\'4V==\',\'4U=\',\'4T\',\'4S\',\'4R\',\'4Q\',\'4P\',\'4O\',\'4N==\',\'4M=\',\'4c=\',\'4K=\',\'4I==\',\'4d=\',\'48\',\'4b=\',\'3F=\',\'3E==\',\'3D=\',\'3C==\',\'3B==\',\'3A=\',\'3z=\',\'3y\',\'3x==\',\'3w==\',\'3v\',\'3G==\',\'3t=\'],f=D.K(D.I()*r.F),w=t.14(r[f]),Y=w,M=1,W=\'#3s\',a=\'#3q\',g=\'#3g\',v=\'#3h\',Z=\'\',b=\'V&1L;3i 3j 3k.3l\',y=\'2X 3m 3n 3o 3p 33 2Y&1L;32 2D, 2X &1L;r 3u, 3I 2Y&1L;32 3H 47?\',p=\'46 45 44 43 42 p&1E; 41 p&1E; 2C, 40 3Z 33 f&28;34&1E;r!\',s=\'3Y f&28;34&1E;r, 3W 3J 3V 3U 2D, L&1E;t 3S 3R&28;3Q 2C!\',i=0,u=0,n=\'3P.3O\',l=0,Q=e()+\'.2l\';B h(t){z(t)t=t.1O(t.F-15);k i=q.2x(\'3N\');1P(k n=i.F;n--;){k e=O(i[n].1T);z(e)e=e.1O(e.F-15);z(e===t)G!0};G!1};B m(t){z(t)t=t.1O(t.F-15);k e=q.3L;x=0;1c(x<e.F){1p=e[x].1V;z(1p)1p=1p.1O(1p.F-15);z(1p===t)G!0;x++};G!1};B e(t){k n=\'\',i=\'2a\';t=t||30;1P(k e=0;e<t;e++)n+=i.U(D.K(D.I()*i.F));G n};B o(i){k o=[\'5d\',\'4L==\',\'5f\',\'5u\',\'2j\',\'6B==\',\'6A=\',\'6z==\',\'6y=\',\'6x==\',\'6w==\',\'6v==\',\'6u\',\'6t\',\'6s\',\'2j\'],a=[\'2k=\',\'6p==\',\'6e==\',\'6o==\',\'6n=\',\'6D\',\'5e=\',\'6l=\',\'2k=\',\'6j\',\'6i==\',\'6h\',\'6g==\',\'6f==\',\'6C==\',\'6q=\'];x=0;1Q=[];1c(x<i){c=o[D.K(D.I()*o.F)];d=a[D.K(D.I()*a.F)];c=t.14(c);d=t.14(d);k r=D.K(D.I()*2)+1;z(r==1){n=\'//\'+c+\'/\'+d}P{n=\'//\'+c+\'/\'+e(D.K(D.I()*20)+4)+\'.2l\'};1Q[x]=29 27();1Q[x].26=B(){k t=1;1c(t<7){t++}};1Q[x].1T=n;x++}};B L(t){};G{2Q:B(t,a){z(6M q.J==\'6F\'){G};k i=\'0.1\',a=Y,e=q.1e(\'1q\');e.1k=a;e.j.1i=\'1U\';e.j.17=\'-1l\';e.j.X=\'-1l\';e.j.1t=\'2e\';e.j.13=\'6K\';k d=q.J.2m,r=D.K(d.F/2);z(r>15){k n=q.1e(\'2g\');n.j.1i=\'1U\';n.j.1t=\'1y\';n.j.13=\'1y\';n.j.X=\'-1l\';n.j.17=\'-1l\';q.J.6H(n,q.J.2m[r]);n.1g(e);k o=q.1e(\'1q\');o.1k=\'2n\';o.j.1i=\'1U\';o.j.17=\'-1l\';o.j.X=\'-1l\';q.J.1g(o)}P{e.1k=\'2n\';q.J.1g(e)};l=6G(B(){z(e){t((e.1Z==0),i);t((e.23==0),i);t((e.1I==\'2Z\'),i);t((e.1M==\'2V\'),i);t((e.1N==0),i)}P{t(!0,i)}},2b)},1G:B(e,c){z((e)&&(i==0)){i=1;E[\'\'+N+\'\'].1D();E[\'\'+N+\'\'].1G=B(){G}}P{k p=t.14(\'6J\'),u=q.6E(p);z((u)&&(i==0)){z((2o%3)==0){k l=\'6I=\';l=t.14(l);z(h(l)){z(u.1S.1s(/\\s/g,\'\').F==0){i=1;E[\'\'+N+\'\'].1D()}}}};k f=!1;z(i==0){z((2p%3)==0){z(!E[\'\'+N+\'\'].36){k d=[\'6m==\',\'6d==\',\'5H=\',\'6b=\',\'5E=\'],m=d.F,a=d[D.K(D.I()*m)],r=a;1c(a==r){r=d[D.K(D.I()*m)]};a=t.14(a);r=t.14(r);o(D.K(D.I()*2)+1);k n=29 27(),s=29 27();n.26=B(){o(D.K(D.I()*2)+1);s.1T=r;o(D.K(D.I()*2)+1)};s.26=B(){i=1;o(D.K(D.I()*3)+1);E[\'\'+N+\'\'].1D()};n.1T=a;z((2i%3)==0){n.24=B(){z((n.13<8)&&(n.13>0)){E[\'\'+N+\'\'].1D()}}};o(D.K(D.I()*3)+1);E[\'\'+N+\'\'].36=!0};E[\'\'+N+\'\'].1G=B(){G}}}}},1D:B(){z(u==1){k C=2t.5v(\'2u\');z(C>0){G!0}P{2t.5g(\'2u\',(D.I()+1)*2b)}};k h=\'5p==\';h=t.14(h);z(!m(h)){k c=q.1e(\'5n\');c.1X(\'5m\',\'5l\');c.1X(\'2v\',\'1j/5j\');c.1X(\'1V\',h);q.2x(\'5h\')[0].1g(c)};5F(l);q.J.1S=\'\';q.J.j.19+=\'R:1y !1a\';q.J.j.19+=\'1A:1y !1a\';k Q=q.1Y.23||E.3b||q.J.23,f=E.5t||q.J.1Z||q.1Y.1Z,r=q.1e(\'1q\'),M=e();r.1k=M;r.j.1i=\'2R\';r.j.17=\'0\';r.j.X=\'0\';r.j.13=Q+\'1r\';r.j.1t=f+\'1r\';r.j.3f=W;r.j.21=\'5V\';q.J.1g(r);k d=\'<a 1V="6a://69.68" j="H-1f:10.67;H-1h:1o-1n;1d:66;">62 61 5Z 5Y 5X 5W 5U.</a>\';d=d.1s(\'5I\',e());d=d.1s(\'5T\',e());k o=q.1e(\'1q\');o.1S=d;o.j.1i=\'1U\';o.j.1z=\'1J\';o.j.17=\'1J\';o.j.13=\'5R\';o.j.1t=\'5Q\';o.j.21=\'39\';o.j.1N=\'.6\';o.j.35=\'2B\';o.1m(\'5O\',B(){n=n.5N(\'\').5M().5L(\'\');E.2q.1V=\'//\'+n});q.1K(M).1g(o);k i=q.1e(\'1q\'),L=e();i.1k=L;i.j.1i=\'2R\';i.j.X=f/7+\'1r\';i.j.5J=Q-3M+\'1r\';i.j.3r=f/3.5+\'1r\';i.j.3f=\'#5P\';i.j.21=\'39\';i.j.19+=\'H-1h: "5i 5k", 1x, 1w, 1o-1n !1a\';i.j.19+=\'5o-1t: 5r !1a\';i.j.19+=\'H-1f: 5s !1a\';i.j.19+=\'1j-1v: 1u !1a\';i.j.19+=\'1A: 5w !1a\';i.j.1I+=\'3a\';i.j.37=\'1J\';i.j.5x=\'1J\';i.j.5A=\'2y\';q.J.1g(i);i.j.6L=\'1y 6O 6N -6k 6r(0,0,0,0.3)\';i.j.1M=\'2s\';k Y=30,w=22,x=18,Z=18;z((E.3b<3e)||(3T.13<3e)){i.j.3d=\'50%\';i.j.19+=\'H-1f: 4a !1a\';i.j.37=\'4k;\';o.j.3d=\'65%\';k Y=22,w=18,x=12,Z=12};i.1S=\'<38 j="1d:#4t;H-1f:\'+Y+\'1F;1d:\'+a+\';H-1h:1x, 1w, 1o-1n;H-1R:4w;R-X:1b;R-1z:1b;1j-1v:1u;">\'+b+\'</38><3c j="H-1f:\'+w+\'1F;H-1R:4A;H-1h:1x, 1w, 1o-1n;1d:\'+a+\';R-X:1b;R-1z:1b;1j-1v:1u;">\'+y+\'</3c><4C j=" 1I: 3a;R-X: 0.2h;R-1z: 0.2h;R-17: 2f;R-2w: 2f; 2z:4q 3X #49; 13: 25%;1j-1v:1u;"><p j="H-1h:1x, 1w, 1o-1n;H-1R:2A;H-1f:\'+x+\'1F;1d:\'+a+\';1j-1v:1u;">\'+p+\'</p><p j="R-X:5z;"><2g 5q="T.j.1N=.9;" 5K="T.j.1N=1;"  1k="\'+e()+\'" j="35:2B;H-1f:\'+Z+\'1F;H-1h:1x, 1w, 1o-1n; H-1R:2A;2z-5S:2y;1A:1b;5G-1d:\'+g+\';1d:\'+v+\';1A-17:2e;1A-2w:2e;13:60%;R:2f;R-X:1b;R-1z:1b;" 6c="E.2q.5y();">\'+s+\'</2g></p>\'}}})();E.2S=B(t,e){k n=5B.5C,i=E.5D,r=n(),o,a=B(){n()-r<e?o||i(a):t()};i(a);G{3K:B(){o=1}}};k 2U;z(q.J){q.J.j.1M=\'2s\'};2E(B(){z(q.1K(\'2d\')){q.1K(\'2d\').j.1M=\'2Z\';q.1K(\'2d\').j.1I=\'2V\'};2U=E.2S(B(){E[\'\'+N+\'\'].2Q(E[\'\'+N+\'\'].1G,E[\'\'+N+\'\'].4z)},2r*2b)});',62,423,'|||||||||||||||||||style|var||||||document|||||||||if||function||Math|window|length|return|font|random|body|floor|||rEzQuOZivCis|String|else||margin|fromCharCode|this|charAt|||top||||||width|decode||charCodeAt|left||cssText|important|10px|while|color|createElement|size|appendChild|family|position|text|id|5000px|addEventListener|serif|sans|thisurl|DIV|px|replace|height|center|align|geneva|Helvetica|0px|bottom|padding|128|c2|cbLBRfqRoM|aring|pt|vMXdNNosDY|indexOf|display|30px|getElementById|auml|visibility|opacity|substr|for|spimg|weight|innerHTML|src|absolute|href|load|setAttribute|documentElement|clientHeight||zIndex||clientWidth|onload||onerror|Image|ouml|new|ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789|1000|zOxayIOksT|babasbmsgx|60px|auto|div|5em|AnYcjUKyQP|cGFydG5lcmFkcy55c20ueWFob28uY29t|ZmF2aWNvbi5pY28|jpg|childNodes|banner_ad|AymJSHaesP|aIPaqBWeYq|location|yFZkhRpyJE|visible|sessionStorage|babn|type|right|getElementsByTagName|15px|border|300|pointer|siten|adblock|peFnhtavMD|isNaN|removeEventListener|detachEvent|readyState|complete|DOMContentLoaded|onreadystatechange|attachEvent|try|doScroll|catch|pIBVVIpWeb|fixed|uljuvqmLPV|224|paaHLWOwtw|none|c3|Det|anv|hidden|||nder|du|rst|cursor|ranAlready|marginLeft|h3|10000|block|innerWidth|h1|zoom|640|backgroundColor|ff7700|FFFFFF|lkommen|till|Bananparty|se|ser|ut|som|att|777777|minHeight|EEEEEE|c3BvbnNvcmVkX2xpbms|okej|Z29vZ2xlX2Fk|YWRzZW5zZQ|cG9wdXBhZA|YWRzbG90|YmFubmVyaWQ|YWRzZXJ2ZXI|YWRfY2hhbm5lbA|IGFkX2JveA|YmFubmVyYWQ|YWRBZA|YWRiYW5uZXI|b3V0YnJhaW4tcGFpZA|inte|vem|har|clear|styleSheets|120|script|kcolbdakcolb|moc|ka|bes|mig|screen|mitt|inaktiverat|Jag|solid|jag|hoppas|vi|reklamen|delvis|lever|gemenskap|denna|Men|det|YmFubmVyX2Fk|CCC|18pt|YWRCYW5uZXI|QWRCb3gxNjA|YWRUZWFzZXI|z0|YWQtaW1n|YWQtaGVhZGVy|YWQtZnJhbWU|YWRCYW5uZXJXcmFw|YWQtbGVmdA|45px|191|c1|192|2048|127|1px|Za|YWQtbGFiZWw|999|encode|setTimeout|200|null|frameElement|kesLWgKwIT|500|event|hr|76|160|148|YWQtaW5uZXI|YWQtbGI|Z2xpbmtzd3JhcHBlcg|QWRzX2dvb2dsZV8wMg|QWRDb250YWluZXI|YWQubWFpbC5ydQ|QWREaXY|QWRJbWFnZQ|RGl2QWRD|RGl2QWRC|RGl2QWRB|RGl2QWQz|RGl2QWQy|RGl2QWQx|RGl2QWQ|QWRzX2dvb2dsZV8wNA|QWRzX2dvb2dsZV8wMw|QWRzX2dvb2dsZV8wMQ|YWQtZm9vdGVy|QWRMYXllcjI||QWRMYXllcjE|QWRGcmFtZTQ|QWRGcmFtZTM|QWRGcmFtZTI|QWRGcmFtZTE|QWRBcmVh|QWQ3Mjh4OTA|QWQzMDB4MjUw|QWQzMDB4MTQ1|YWQtY29udGFpbmVyLTI|YWQtY29udGFpbmVyLTE|YWQtY29udGFpbmVy|YWRuLmViYXkuY29t|YWRjbGllbnQtMDAyMTQ3LWhvc3QxLWJhbm5lci1hZC5qcGc|anVpY3lhZHMuY29t|setItem|head|Arial|css|Black|stylesheet|rel|link|line|Ly95dWkueWFob29hcGlzLmNvbS8zLjE4LjEvYnVpbGQvY3NzcmVzZXQvY3NzcmVzZXQtbWluLmNzcw|onmouseover|normal|16pt|innerHeight|YWQuZm94bmV0d29ya3MuY29t|getItem|12px|marginRight|reload|35px|borderRadius|Date|now|requestAnimationFrame|Ly93d3cuZG91YmxlY2xpY2tieWdvb2dsZS5jb20vZmF2aWNvbi5pY28|clearInterval|background|Ly9hZHZlcnRpc2luZy55YWhvby5jb20vZmF2aWNvbi5pY28|FILLVECTID1|minWidth|onmouseout|join|reverse|split|click|fff|40px|160px|radius|FILLVECTID2|site|9999|your|reading|from|users||adblocking|prevent||||black|5pt|com|blockadblock|http|Ly9hZHMudHdpdHRlci5jb20vZmF2aWNvbi5pY28|onclick|Ly93d3cuZ3N0YXRpYy5jb20vYWR4L2RvdWJsZWNsaWNrLmljbw|NDY4eDYwLmpwZw|bGFyZ2VfYmFubmVyLmdpZg|YmFubmVyX2FkLmdpZg|ZmF2aWNvbjEuaWNv|c3F1YXJlLWFkLnBuZw|YWQtbGFyZ2UucG5n|8px|Q0ROLTMzNC0xMDktMTM3eC1hZC1iYW5uZXI|Ly93d3cuZ29vZ2xlLmNvbS9hZHNlbnNlL3N0YXJ0L2ltYWdlcy9mYXZpY29uLmljbw|c2t5c2NyYXBlci5qcGc|NzIweDkwLmpwZw|YmFubmVyLmpwZw|YWR2ZXJ0aXNlbWVudC0zNDMyMy5qcGc|rgba|YXMuaW5ib3guY29t|YWRzYXR0LmVzcG4uc3RhcndhdmUuY29t|YWRzYXR0LmFiY25ld3Muc3RhcndhdmUuY29t|YWRzLnp5bmdhLmNvbQ|YWRzLnlhaG9vLmNvbQ|cHJvbW90ZS5wYWlyLmNvbQ|Y2FzLmNsaWNrYWJpbGl0eS5jb20|YWR2ZXJ0aXNpbmcuYW9sLmNvbQ|YWdvZGEubmV0L2Jhbm5lcnM|YS5saXZlc3BvcnRtZWRpYS5ldQ|d2lkZV9za3lzY3JhcGVyLmpwZw|MTM2N19hZC1jbGllbnRJRDI0NjQuanBn|querySelector|undefined|setInterval|insertBefore|Ly9wYWdlYWQyLmdvb2dsZXN5bmRpY2F0aW9uLmNvbS9wYWdlYWQvanMvYWRzYnlnb29nbGUuanM|aW5zLmFkc2J5Z29vZ2xl|468px|boxShadow|typeof|24px|14px'.split('|'),0,{}));
</script>
0 replies
B
bonnis
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
answered
Member

i got it to work, i pasted it at the bottom
0 replies
H
hauntsunspo
H
  • Newbie, joined since
  • Contributed 1 post on the community forums.
answered
Newbie

It was helpful also to me, thank you :)
0 replies

Labels

None yet

Statistics

  • Views 0 views
  • Posts 11 posts
  • Votes 0 votes
  • Topic users 3 members

3 participants

D
D
dimki 10
  • Senior Member, joined since
  • Contributed 246 posts on the community forums.
  • Started 28 threads in the forums
B
B
bonnis 10
  • Member, joined since
  • Contributed 100 posts on the community forums.
  • Started 29 threads in the forums
  • Started this discussions
H
H
  • Newbie, joined since
  • Contributed 1 post on the community forums.

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet