Created
August 18, 2014 23:44
-
-
Save ig10/6cc7d4fb0818d20324cd to your computer and use it in GitHub Desktop.
CPFFillFromList
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function () { | |
function randomize(arr) { | |
return arr[Math.floor(Math.random() * (arr.length - 0))]; | |
} | |
var cpfList = ["79722351800", | |
"08551583875", | |
"19072143051", | |
"12687174440", | |
"84077884659", | |
"26882180008", | |
"35858017657", | |
"36578979506", | |
"15110897417"]; | |
document.getElementsByClassName('cpf')[0].value = randomize(cpfList); | |
}).call(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment