Hello, Any one has any free ajax script for measuring password strength and other script for showing progress Bar....
Why would you need AJAX for password strength...? There's no reason to connect to another website for that.
It could be done with AJAX that requests a PHP script to calculate the password's strength however in JavaScript it would be faster and less bandwidth-consuming.
Once the script is ready I would like to list it in my directory with free ajax scripts. Please PM me if you are interested.
Alright it's done, you can check the script (demo) and download here .. http://www.hakc.net/2007/04/06/ajax-password-strength/ It may have some bugs!
There’s a little error in your code which prevents it from working on IE. In the makeRequest() function, call open() BEFORE you set a onreadystatechange action. http_request.open('GET', url + parameters, true); http_request.onreadystatechange = alertContents; http_request.send(null); Code (javascript):
What the hell are you using ajax for? You're just making it slower and more complicated. AJAX has its uses, but this is definitely not one.
Thanks for your reply, the problem still persists. What I came to know just before couple of hours was, MSKB said that the character encoding is not supported by MSIE and therefore errocode #c00ce56e is shown in the status bar. I'm still looking for the solution Vishal asked for that script (ajax) and I got the idea from GMail's sign up page.