0
0
mirror of https://github.com/Doodle3D/doodle3d-connect.git synced 2024-07-01 10:41:22 +02:00
doodle3d-connect/js/libs/jquery.psswrd.js
2014-05-12 18:20:15 +02:00

20 lines
474 B
JavaScript
Executable File

(function($){
$.fn.extend({
psswrd: function() {
return $(this).each(function(){
console.log(" each: ",$(this));
var $input = $(this);
var $checkbox = $($input.data('typetoggle'));
$checkbox.change(function() {
updateType();
$input.focus();
});
updateType();
function updateType() {
$input[0].type = $checkbox.is(':checked') ? 'text' : 'password';
}
});
}
});
})(jQuery);