Skip to content

Instantly share code, notes, and snippets.

@agragregra
Last active February 8, 2018 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save agragregra/e1f6e35b3535a9cd3ffcdf1d4054075f to your computer and use it in GitHub Desktop.
Save agragregra/e1f6e35b3535a9cd3ffcdf1d4054075f to your computer and use it in GitHub Desktop.
Open All Webvisor Items
// Open All Webvisor Items
var time = 1000;
$(".toggle-expand").each(function() {
var ths = $(this);
setTimeout(function() {
ths.click();
}, time);
time += 1000;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment