Skip to content

Instantly share code, notes, and snippets.

@ig10
Created August 18, 2014 23:44
Show Gist options
  • Save ig10/6cc7d4fb0818d20324cd to your computer and use it in GitHub Desktop.
Save ig10/6cc7d4fb0818d20324cd to your computer and use it in GitHub Desktop.
CPFFillFromList
(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