Skip to content

Instantly share code, notes, and snippets.

@elmimmo
Last active January 2, 2020 14:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save elmimmo/5498465 to your computer and use it in GitHub Desktop.
Save elmimmo/5498465 to your computer and use it in GitHub Desktop.
Select all posts in Tumblr Mass Post Editor
var my_array = document.querySelectorAll('[id^=post_]');
var i;
for (i = 0; i < Math.min(my_array.length, 100); i += 1) {
my_array[i].click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment