Good morning,
I have this code (just an example):
function random(min, max) {
return min + parseInt(Math.random() * (max - min + 1));
}
function generatePassword(length, charset) {
var password = "";
while (length--) {
password += charset[random(0, charset.length - 1)];
}
return password;
}
function getNewPassword() {
$('#password').text(generatePassword(12, "AaBbCcDdEeFfGgHhIiJjKkLlMmNnOoPpQqRrSsTtUuVvWwXxYyZz0123456789!?#@*&.,;:+-=()[]_"));
}
And would like to add an input field in HTML, where I can set the length of the generated password.
Can you please find with me a solution? :-)
There you have it: http://jsbin.com/odosoy/94/edit
Javascript
HTML
Update
Just reworked and styled your initial example a bit, nothing really special. http://jsbin.com/odosoy/97/edit and one in which the password is replaced: http://jsbin.com/odosoy/125/edit
Hope it helps.