i want my username and password to be autofilled when user already logged into the website, i have enable auto fill by below code. when user visits next time, i want both user name and password field should be prepopulated.
<form autocomplete="on">
<input type="text" name="userName" id="userName" autocomplete="on">
<input type="text" name="paasword" id="password" autocomplete="on">
the above code works fine in chrome but this is not working in firefox and ie.
Note - i am using ajax call, when login success i do window.location.replace(redirect)