12 lines
227 B
PHP
12 lines
227 B
PHP
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
|
|
jQuery(document).ready(function(){
|
|
jQuery("#pass").keyup(function() {
|
|
passwordStrength(jQuery(this).val());
|
|
});
|
|
});
|
|
|
|
});
|
|
</script>
|