Skip to content

Instantly share code, notes, and snippets.

@35d
Created February 17, 2019 22:55
Show Gist options
  • Save 35d/eab74edf235f905c6acbf56367fb630d to your computer and use it in GitHub Desktop.
Save 35d/eab74edf235f905c6acbf56367fb630d to your computer and use it in GitHub Desktop.
一括フォロー用スクリプト
$(".follow-text").each(function(index, element) {
var ev = jQuery.Event('click');
ev.srcElement = element;
$(this).delay(index*100).trigger(ev);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment