Letters Peeking in Password Textbox with Windows Phone 8
Hi..
I am using Miscrosoft MVC HTML password helper in windows phone 8 with jQuery validation as in following code snippets.
@*Script Section*@
<script src="@Url.Content("~/Scripts/jquery.validate.min.js")" type="text/javascript"></script>
<script src="@Url.Content("~/Scripts/jquery.validate.unobtrusive.min.js")" type="text/javascript"></script>
@*View*@
@Html.PasswordFor(m => m.Password)
@Html.ValidationMessageFor(m => m.Password)
But while typing, the wrong letter in the textbox is getting visible instead of currently typing letter after the jQuery validation happens on that particular textbox in Windows phone 8. Please find the snap as below.

Could anyone please help me on this ?