Skip to content

Instantly share code, notes, and snippets.

@megub
Last active September 23, 2015 20:44
Show Gist options
  • Save megub/cf500097dc3c8f8f99d4 to your computer and use it in GitHub Desktop.
Save megub/cf500097dc3c8f8f99d4 to your computer and use it in GitHub Desktop.
Generate random number
<script>
function randomInt(min,max) {
return Math.floor(Math.random()*(max-min+1)+min);
}
document.getElementById("hiddenfieldIDhere").value = randomInt(1,100);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment