I have a login component and in it the password field has singlelline text mode
what I'm trying to do is focus the text, which will change to password
I tried this:
$(function () {
$(".PassTextBox").focus(function (pas) {
$(".PassTextBox").attr("TextMode", "Password");
});
});
but it did not work
using asp.net 3.5, thanks
source
share