-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathshow-hide-password.js
94 lines (76 loc) · 2.62 KB
/
show-hide-password.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
// Name : Show Hide Password
// Version : 1.0.3
// Developer : Ekrem KAYA
// Website : https://openix.io
// GitHub : https://github.com/openix/show-hide-password
(function($) {
'use strict';
$.fn.showHidePassword = function(option) {
$.extend(this, option);
var element = $(this);
// Check bootstrap input group
var inputGroupCheck = element.parent().hasClass('input-group');
// Bootstrap v5
var formFloatingCheck = element.parent().hasClass('form-floating');
if (inputGroupCheck) {
element.css({
borderTopRightRadius: '4px',
borderBottomRightRadius: '4px'
});
} else if (!formFloatingCheck) {
element.wrap('<div class="password-container"></div>');
}
// FontAwesome v6
element.after('<span class="show-hide-password"><i class="fa-solid fa-eye"></i></span>');
// Add postion css password container
$('.password-container').css({position: 'relative'});
var showHideIcon = element.parent().find('.show-hide-password');
// Add eye icon css
$(showHideIcon).css({
position: 'absolute',
display: 'none',
top: '0',
right: '0',
height: element.outerHeight(true) - 2,
marginTop: '1px',
padding: formFloatingCheck ? '18px 12px' : '6px 11px',
//borderLeft: '1px solid #CCC',
cursor: 'pointer',
zIndex : '999',
color : ($('html').attr('data-bs-theme') == 'dark') ? 'white' : 'black'
});
// Show eye icon when you start entering password
element.keyup(function(event) {
var keyUp = $(this);
var passwordVal = keyUp.val();
if (passwordVal.length > 0) {
// Add padding password input
keyUp.css({paddingRight : '34px'});
if (inputGroupCheck) {
$(showHideIcon).css({padding: '8px 11px'});
}
// Show eye icon
keyUp.parent().find(showHideIcon).show();
} else if (element.val() == '') {
// If is empty hide eye icon
keyUp.parent().find(showHideIcon).hide();
}
});
// If is not empty show eye icon
element.trigger('keyup');
// Change eye icon class
$(showHideIcon).on('click', function() {
var iconElement = this;
// Change eye icon
$(iconElement).find('i').toggleClass('fa-eye fa-eye-slash');
var findInputPassword = $(iconElement).parent().find('input');
var passwordFieldType = findInputPassword.attr('type');
// Show Hide Password
if (passwordFieldType == 'password') {
findInputPassword.attr('type', 'text');
} else {
findInputPassword.attr('type', 'password');
}
});
}
})(window.jQuery);