delete Reddit posts without code

17/09/2016

Ironically from a Reddit post 🙂
How to delete or overwrite all your Reddit

This code will run without the name Reddit auth 🙂

I think the best solution is to use RES to load up as many comments as you can on one page, then use client side javascript to click them on a timer.
Use RES to load as many comments as you can on one web page
Open developer tools – console with ctrl + option + j or ctrl + shift + j
copy and paste the following code into the console and hit enter to run
Javascript to run in console:
note: 1500 is the time between clicks on the delete button.

var $domNodeToIterateOver = $(‘.del-button .option .yes’),
currentTime = 0,
timeInterval = 1500;

$domNodeToIterateOver.each(function() {

var _this = $(this);
currentTime = currentTime + timeInterval;

setTimeout(function() {
_this.click();
}, currentTime);
});

What I need to implement in the future: Remove your comment history on Reddit as deleting an account does not do so.