Last active
February 8, 2018 14:17
-
-
Save agragregra/e1f6e35b3535a9cd3ffcdf1d4054075f to your computer and use it in GitHub Desktop.
Open All Webvisor Items
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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