123456789101112131415161718192021222324252627 |
- $(document).ready(function(){
- $('.pass_show').append('<span class="ptxt">Показать</span>');
- $('.ptxt').on('mousedown', function(){
- $(this).prev().attr('type', function(index, attr){return 'text';})
- });
- $('.ptxt').on('mouseup', function(){
- $(this).prev().attr('type', function(index, attr){return 'password';})
- });
- });
- $("#signinsubmitform").submit(function(event){
- //alert("alert");
- var isValid = true;
- // do all your validation if need here
- if (document.getElementById('password').value != document.getElementById('password-repeat').value) {
- isValid = false;
- }
- if (!isValid) {
- event.preventDefault();
- document.getElementById("errmsg").innerHTML = "Введеные пароли не совпадают";
- }
- });
|