Skip to content

Instantly share code, notes, and snippets.

@andreasvirkus
Created February 17, 2017 12:53
Show Gist options
  • Save andreasvirkus/87e50a7ae9cd4e3c1ea4d2aff22743e8 to your computer and use it in GitHub Desktop.
Save andreasvirkus/87e50a7ae9cd4e3c1ea4d2aff22743e8 to your computer and use it in GitHub Desktop.
// For those crucial times you can't decide which element to pick
$.fn.random = () => {
return this.eq(Math.floor(Math.random() * this.length));
};
// Usage
$('nav li').random().find('a').click();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment