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
| /** | |
| * Password validation RegEx for JavaScript | |
| * | |
| * Passwords must be | |
| * - At least 8 characters long, max length anything | |
| * - Include at least 1 lowercase letter | |
| * - 1 capital letter | |
| * - 1 number | |
| * - 1 special character => !@#$%^&* | |
| * |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script> | |
| <meta charset="utf-8"> | |
| <title>JS Bin</title> | |
| </head> | |
| <body> | |
| <button id="add">Add Addresses</button> | |
| <div id="addresses"></div> |