Skip to content

Instantly share code, notes, and snippets.

@megub
Last active September 23, 2015 20:44
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