Skip to content

Instantly share code, notes, and snippets.

View javiercastrodev's full-sized avatar
🏠
Working from home

Javier Castro javiercastrodev

🏠
Working from home
View GitHub Profile
@javiercastrodev
javiercastrodev / jquery-password-strength-form.html
Created December 25, 2015 20:18 — forked from paulund/jquery-password-strength-form.html
jQuery snippet to judge the strength of a password. View the demo of this code snippet http://www.paulund.co.uk/password-strength-indicator-jquery
<form action="" method="post">
<p><label for="passwordInput">Password: <input type="password" id="passwordInput" name="passwordInput"></label></p>
<p><label for="confirmPasswordInput">Confirm Password: <input type="password" id="confirmPasswordInput" name="confirmPasswordInput"></label></p>
<p><div class="" id="passwordStrength"></div></p>
<p><input type="submit" value="Change Password" class="btn"></p>
</form>
@javiercastrodev
javiercastrodev / add-option-to-dropdown.js
Created October 21, 2015 00:08 — forked from paulund/add-option-to-dropdown.js
Add and Remove Options in Select using jQuery
$("#selectBox").append('<option value="option6">option6</option>');