bootstrap-editable и пароли

Jan 24, 2017 15:48


Originally published at ЖЗГ. You can comment here or there.

Задача: необходимо обеспечить скрытие пароля для пользователя.

Решение:

$("#password").filter(function() {       return true;         }).each(function() {     $(this).text("******");     });     $('#password').editable({     type: 'password',     success: function(data) {if (data!="") $().toastmessage('showWarningToast', data);}     });


Из жизни, web

Previous post Next post
Up