Is there a specific identifier that I should call my Bootstrap module so that AdBlock Plus blocks it?

Is there a specific identifier that I should call my Bootstrap Modal module to block its AdBlock Plus?

I want AdBlock Plus to block it if someone has installed and used it. I do not want to be overly annoying while working on ABP. The only reason I use Modal is because Bootstrap is easy to use.

My HTML:

<!-- Modal -->
<div id="AdModal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
  <div class="modal-header">
    <button type="button" class="close" data-dismiss="modal" aria-hidden="true">X</button>
    <h3 id="myModalLabel">Email Deals</h3>
  </div>
  <div class="modal-body">
      <p>Sign up for email-only specials and news updates. We will not sell or rent your email address.</p>
      <p>Sign up now!</p>
        <form class="form-horizontal" method="post" action="http://www.gliq.com/cgi-bin/subunsub">
        <div class="input-prepend">
        <input type="hidden" name="acctname" value="amleo"/>
        <input type="hidden" name="action" value="subscribe"/>
        <input type="hidden" name="url" value="http://www.amleo.com/subscribe-successful/a/47/"/>
        <input type="text" placeholder="Your email address" id="inputIcon" class="input-xlarge" name="email">
        <input value="SUBSCRIBE" class="btn btn-orange" type="submit">
        </div>
        </form>
      <p><a href="">Privacy Policy</a>.</p>
  </div>
</div>
+3
source share
2 answers

Try setting banneras id for your modal. AdBlock typically blocks these items with the highest priority.

0
source

All Articles