We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b443b70 commit d85ced6Copy full SHA for d85ced6
README.md
@@ -8,6 +8,17 @@ A simple and short javascript-based password generator
8
- debug information
9
10
## usage
11
+- Add the latest jQuery via Google Hosted Libraries to your project head
12
+- Add the `pwgen.js` or (`pwgen.min.js`) file aswell
13
+- If you want to display SHA1 hashes include `sha1.min.js` aswell
14
+```html
15
+<head>
16
+ <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
17
+ <script src="js/pwgen.js"></script>
18
+ <script src="js/sha1.min.js"></script>
19
+</head>
20
+```
21
+Add this at the end of your file:
22
```html
23
<script>
24
$('.your-class').pwgen();
0 commit comments