Skip to content

Instantly share code, notes, and snippets.

@xoebus
Created March 3, 2012 21:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xoebus/1968436 to your computer and use it in GitHub Desktop.
Save xoebus/1968436 to your computer and use it in GitHub Desktop.
Remove Question and Answers from the Tumblr Dashboard
// Remove the dreadful question and answers from the dashboard.
setInterval(function() {
$('li > div.post_content > div.post_question').parent().parent().remove();
}, 5000);
@xoebus
Copy link
Author

xoebus commented Mar 3, 2012

This can be used with dotjs. The interval is used to remove any posts that are pulled in via the endless scrolling feature.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment