Skip to content

Instantly share code, notes, and snippets.

@gingerrific
Created May 22, 2014 21:08
Show Gist options
  • Save gingerrific/a3f7ad5121bed550fd42 to your computer and use it in GitHub Desktop.
Save gingerrific/a3f7ad5121bed550fd42 to your computer and use it in GitHub Desktop.
<select class="dice-sides-input">
<option></option>
<option>1</option>
<option>2</option>
<option>3</option>
<option>4</option>
<option>5</option>
<option>6</option>
<option>22</option>
</select>
var getNum = function () {
sides = $('.dice-sides-input :selected').text();
return Math.floor(Math.random() * sides) + 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment