Skip to content

Instantly share code, notes, and snippets.

View TheMetalCode's full-sized avatar

Jason Hagglund TheMetalCode

View GitHub Profile
var timer=100;document.querySelectorAll("div > input[type='checkbox']:checked").forEach((interest) => {setTimeout(function(){interest.click()},timer);timer+=2000;});