31 lines
641 B
JavaScript
31 lines
641 B
JavaScript
$(document).ready(function () {
|
|
// Setup - add a text input to each footer cell
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
$(".con-pass").click(function() {
|
|
|
|
$(".con-pass").toggleClass("icon-y");
|
|
|
|
var input1 = $( "#confirm-password");
|
|
if (input1.attr("type") == "password") {
|
|
input1.attr("type", "text");
|
|
} else {
|
|
input1.attr("type", "password");
|
|
}
|
|
});
|
|
|
|
$(".passwrd-icon").click(function() {
|
|
|
|
$(".passwrd-icon").toggleClass("icon-y");
|
|
|
|
var input1 = $( "#password");
|
|
if (input1.attr("type") == "password") {
|
|
input1.attr("type", "text");
|
|
} else {
|
|
input1.attr("type", "password");
|
|
}
|
|
}); |