Use jQuery to Generate Random Strings

This short JavaScript article tutorial guides us how to make a random string with JavaScript (random string JavaScript) and jQuery. Both two random JavaScript functions give us the options to insert the special characters and length of string.

Try more JavaScript code examples for creating random strings, random text generators on jsB@nk:

- Random Text Generator
- Lunch Decision Maker
- Random Password Generator 2
- Random password generator
- Random Text


Sampled by © JavaScriptBank.com

October is a National Cyber Security Awareness Month. The aim is to increase cyber and internet security awareness among surfers. Google and others are joining the move. So I thought I would write a post regarding internet security to add my 2 cents. In this post you will find JavaScript function that generates random passwords of any length as well as jQuery version.

JavaScript Password Generator

function password(length, special) {
 
var iteration = 0;
 
var password = "";
 
var randomNumber;
 
if(special == undefined){
     
var special = false;
 
}
 
while(iteration < length){
    randomNumber
= (Math.floor((Math.random() * 100)) % 94) + 33;
   
if(!special){
     
if ((randomNumber >=33) && (randomNumber <=47)) { continue; }
     
if ((randomNumber >=58) && (randomNumber <=64)) { continue; }
     
if ((randomNumber >=91) && (randomNumber <=96)) { continue; }
     
if ((randomNumber >=123) && (randomNumber <=126)) { continue; }
   
}
    iteration
++;
    password
+= String.fromCharCode(randomNumber);
 
}
 
return password;
}

This function takes two parameters: integer value for password length and optional boolean value true if you want to include special characters in your generated passwords.

Examples of generated passwords

password(8);
// Outputs: Yrc7TxX3

password
(12, true);
//Outputs: C}4_ege!P&#M

jQuery password generator

$.extend({ 
  password
: function (length, special) {
   
var iteration = 0;
   
var password = "";
   
var randomNumber;
   
if(special == undefined){
       
var special = false;
   
}
   
while(iteration < length){
        randomNumber
= (Math.floor((Math.random() * 100)) % 94) + 33;
       
if(!special){
           
if ((randomNumber >=33) && (randomNumber <=47)) { continue; }
           
if ((randomNumber >=58) && (randomNumber <=64)) { continue; }
           
if ((randomNumber >=91) && (randomNumber <=96)) { continue; }
           
if ((randomNumber >=123) && (randomNumber <=126)) { continue; }
       
}
        iteration
++;
        password
+= String.fromCharCode(randomNumber);
   
}
   
return password;
 
}
});

// How to use
$
.password(8);
$
.password(12, true);

Language
Translate this page to English Translate this page to French Translate this page to Vietnamese

Recent articles
How to open a car sharing service
Vue developer as a vital part of every software team
Vue.js developers: hire them, use them and get ahead of the competition
3 Reasons Why Java is so Popular
Migrate to Angular: why and how you should do it
The Possible Working Methods of Python Ideology
JavaScript Research Paper: 6 Writing Tips to Craft a Masterpiece
Learning How to Make Use of New Marketing Trends
5 Important Elements of an E-commerce Website
How To Create A Successful Prototype For Your PCB


Top view articles
Top 10 Beautiful Christmas Countdown Timers
Adding JavaScript to WordPress Effectively with JavaScript Localization feature
65 Free JavaScript Photo Gallery Solutions
16 Free Code Syntax Highlighters by Javascript For Better Programming
Best Free Linux Web Programming Editors
Top 10 Best JavaScript eBooks that Beginners should Learn
Top 50 Most Addictive and Popular Facebook mini games
More 30 Excellent JavaScript/AJAX based Photo Galleries to Boost your Sites
Top 10 Free Web Chat box Plug-ins and Add-ons
The Ultimate JavaScript Tutorial in Web Design


Free JavaScript Tutorials & Articles
at www.JavaScriptBank.com