Sunday, July 1, 2012

Force Autocomplete (Remember Passwords) in Internet Explorer

Some websites or in my case (Oracle E-Business Suite Login page) may opt out of using autocomplete by using autocomplete="off" in the form tag as shown below:

<form name="form1" id="form1" method="post" autocomplete="off"
  action="http://www.example.com/form.cgi">
[...]
</form>
Internet Explorer you will not be able to remember passwords if autocomplete is off. Other browsers like Chrome overrides this so no need to use this workaround with it. If you have to use Internet Explorer (Like my case) then there is a workaround for this problem. It's a simple javascript code which scans the html code and changes the autocomplete property from off to on.. 


Open this post in Internet Explorer, right click below link and click "Add to favorites.."

Force Autocomplete

Follow the below steps to use it with Oracle E-Business Suite.
  1. Navigate to EBS Login Page & run the javascript code link.
  2. Navigate to the password field then to the user field and login.
  3. You will see now a Save/Cancel dialogue (Autocomplete is on).
  4. Click Save to remember your username and password.
  5. Log out of Application (Autocomplete is off again).
  6. Repeat steps 1 & 2 then double click in the user field.

1 comment: