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);}
});