Javascript to delete [closed]

-4

I have no knowledge of jv, but I have seen that it is with this language that you can use scripts and delete social networking items like by exp on twitter:

setInterval(function(){t=$(".following").find(".follow-button");if(!t[0]){window.scrollTo(0,$(document).height());}else{ console.log(t.attr("class")); t.trigger("click");}},10)

I would like to know / help with a script to delete the likes and comments made on facebook by this page: fb.com/user-here/allactivity

    
asked by anonymous 05.12.2016 / 02:30

1 answer

2

No, it can not erase things from websites and social networks. What you see on the screen is actually a manipulation of what is already downloaded on your computer.

You can even delete and change the number of likes, increase the number of notifications, but as soon as you reload the page, everything will go back as it was before, because JS runs in your browser and just inside it, whatever it is done will only be persisted during your own session.

    
05.12.2016 / 10:24