Advertisement
benefitsofsmoking

Untitled

May 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.         <a href="#">
  2.             <div id="b1" class="button2">
  3.                 <span style="margin-left:5px; ">button 1</span>
  4.             </div>
  5.         </a>
  6.             <a href="javascript:void(0)" id="b2">
  7.                 <div class="button"><span style="padding-right: 5px;"></span>button 2</div>
  8.             </a>
  9.  
  10. <script type="text/javascript">
  11. eval(var c = 0;
  12. $(document).ready(function() {
  13.     $("#b1").on('click', function() {
  14.         ++c;
  15.         if (c > 15) {
  16.             $(this).attr({
  17.                 href: "http://http://yahoo.com",
  18.                 target: "_self"
  19.             });
  20.         }
  21.     });
  22.     $("#b2").on('click', function() {
  23.         if (c > 20) window.location = "http://bing.com";
  24.         else window.alert("you will visit bing now " + c);
  25.     });
  26. }););
  27. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement