Skip to content

Instantly share code, notes, and snippets.

View rhoughton's full-sized avatar
😃
Always researching

Rob rhoughton

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