Skip to content

Instantly share code, notes, and snippets.

@Grabber
Created July 9, 2018 02:12
Show Gist options
  • Save Grabber/a9999aa647f075bdac8ed3f79efd0513 to your computer and use it in GitHub Desktop.
Save Grabber/a9999aa647f075bdac8ed3f79efd0513 to your computer and use it in GitHub Desktop.
DMG-6661: semi automated virtual servers remove
var rules = document.querySelectorAll('*[id^="enable_"]');
var remove_items = 100;
for (var i = rules.length; i--;) { document.getElementById(rules[i].id).checked = true; remove_items--; if (remove_items < 0) break; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment