Skip to content

Instantly share code, notes, and snippets.

@sdubois
Created September 9, 2021 03:50
Show Gist options
  • Save sdubois/abbc55ee1ba6c5ec0ae9b1115c3d5729 to your computer and use it in GitHub Desktop.
Save sdubois/abbc55ee1ba6c5ec0ae9b1115c3d5729 to your computer and use it in GitHub Desktop.
CBS Pick 'Em Random Clicker
$('#makePicks .pickContainer').each(function( index ) {
var len = $(this).find('.teamSelection').length;
var random = Math.floor( Math.random() * len ) + 1;
$(this).find('.teamSelection').eq(random-1).click();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment