[req] Working Facebook Clickjacking

the problem is that facebook open a popup to confirm the

I created this script (check the source code)
Code:
http://myalbum.de.vc/3r7krj/
in this way double click not remove the like, but the problem is the facebook confirm popup

if you work with a Facebook app it is easily trackable and a ban is not far away then.
I see you are not using a .js file to call the script. Isn't it possible to add a cookie via javascript so it doesn't appear again ? You can also let the like button disappear after X milliseconds like they did in the old script.

Ultimately you want to achieve this :

- Hide like button completely with opacity 0.
- Auto click mousebutton when entering website with javascript like this
Code:
http://stackoverflow.com/questions/6157929/how-to-simulate-mouse-click-using-javascript
- Add cookie to script so it doesn't appear again or doesn't appear again after x amount of days like this
Code:
http://www.w3schools.com/js/js_cookies.asp

If all this sould come together it would be a great script. This sounds great in theory but I do not know a lot about Javascript so any help is appreciated :D.

ps : Notice on the bottom of the page concerning the auto click function there is a possibility to give it X and Y coordinates so when having an Official Like Box from Facebook as I said before this could be usefull to get a click on that Like Box like button. Important thing hereby is that the like button of an Official Like Box can not be unliked and does not give a pop-up ! Pop-up only shows up when user is not logged on (most people are logged in with the same browser)
 
Last edited:
to hide the button just set opacy to 0... I leave it to show in debug the button :D
the autoclick is not possible because the like button is in the facebook server side
 
Back
Top