Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make Chrome remember password for an AJAX form?

Tags:

I'm using AJAX for fast input validation on my login page. If everything is correct, the user is redirected.

Here's the code:

$(form).submit(function () {     $.post($(this).attr('action'), $(this).serialize(), function (data) {         if (data.status == 'SUCCESS') {             window.location = data.redirectUrl;         }    } ... 

It works really well in all browsers. But there's a problem in Chrome. It doesn't offer to save the password.

When JavaScript is turned off, the password is saved, so the problem is definitely in redirection to a new location.

How can I fix that?

like image 467
Alex Avatar asked Mar 25 '11 08:03

Alex


People also ask

Can I force Google Chrome to save a password?

Open your Chrome browser. In the address bar type in: 'chrome://flags/#enable-password-force-saving', then press “Enter.” Choose “Enabled” from the drop-down menu under the “Force-saving of passwords” option.

How should I store my username and password in HTML?

On submit javascript posts the username and password to a php script on the server which returns 'true' or 'false'. When the authentication returns true the app changes the html5 page and stores the username and password in html5 local storage.


1 Answers

I have found a dirty workaround for this problem, by inserting an invisible iframe and targeting the form to it:

<iframe src="/blank.html" id="loginTarget" name="loginTarget" style="display:none"> </iframe>  <form id="loginForm" action="/blank.html" method="post" target="loginTarget"></form> 

The corresponding JavaScript:

$('#loginForm').submit(function () {     $.post('/login', $(this).serialize(), function (data) {         if (data.status == 'SUCCESS') {             window.location = data.redirectUrl;         }     }) }) 

The trick is, that there are really two requests made. First the form gets submitted to /blank.html, which will be ignored by the server, but this triggers the password save dialog in Chrome. Additionally we make an ajax request and submit the real form to /login. Since the target of the first request is an invisible iframe the page doesn't refresh.

This is of course more useful if you don't want to redirect to another page. If you want to redirect anyway changing the action attribute is a better solution.

Edit:

Here is a simple JSFiddle version of it. Contrary to claims in the comment section, there is no reload of the page needed and it seems to work very reliably. I tested it on Win XP with Chrome and on Linux with Chromium.

like image 52
zeitgeist87 Avatar answered Sep 23 '22 02:09

zeitgeist87