if($jq(this).text() == "Show") {
$jq('#password')[0].type = "text";
} else {
$jq('#password')[0].type = "password";
}
In my program, I am changing type of password input field on clicking hide or show password button.
the above code works fine with all the browsers except IE.
anyone plz help me with solution. Thanks