i want Ajax Script for Passoword Strength Meter and Progress Bar

Discussion in 'JavaScript' started by VishalVasani, Mar 25, 2007.

  1. #1
    Hello,

    Any one has any free ajax script for measuring password strength and other script for showing progress Bar....
     
    VishalVasani, Mar 25, 2007 IP
  2. 3l3ctr1c

    3l3ctr1c Peon

    Messages:
    380
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Password strength can be done, I'll reply in here asap in 24 hours once I try it out.

    -- 3l3ctr1c
     
    3l3ctr1c, Mar 25, 2007 IP
  3. sahilcoolsmart

    sahilcoolsmart Well-Known Member

    Messages:
    1,192
    Likes Received:
    40
    Best Answers:
    0
    Trophy Points:
    140
    #3
    i think miniajax.com has a solution..
     
    sahilcoolsmart, Mar 31, 2007 IP
  4. giraph

    giraph Guest

    Messages:
    484
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Why would you need AJAX for password strength...? There's no reason to connect to another website for that.
     
    giraph, Mar 31, 2007 IP
  5. bobby9101

    bobby9101 Peon

    Messages:
    3,292
    Likes Received:
    134
    Best Answers:
    0
    Trophy Points:
    0
    #5
    All it is is javascript. not AJAX
    I hate it when people use "buzz words" out of context ;)
     
    bobby9101, Apr 1, 2007 IP
  6. JochenVandeVelde

    JochenVandeVelde Peon

    Messages:
    412
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    0
    #6
    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.
     
    JochenVandeVelde, Apr 1, 2007 IP
  7. 3l3ctr1c

    3l3ctr1c Peon

    Messages:
    380
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I'm sorry for the delay but I compelted the php backend, give me a day to make it with AJAX.
     
    3l3ctr1c, Apr 1, 2007 IP
  8. jkolarov

    jkolarov Peon

    Messages:
    109
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    0
    #8
    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.
     
    jkolarov, Apr 4, 2007 IP
  9. 3l3ctr1c

    3l3ctr1c Peon

    Messages:
    380
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #9
    3l3ctr1c, Apr 6, 2007 IP
  10. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #10
    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):
     
    nico_swd, Apr 6, 2007 IP
  11. giraph

    giraph Guest

    Messages:
    484
    Likes Received:
    27
    Best Answers:
    0
    Trophy Points:
    0
    #11
    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.
     
    giraph, Apr 6, 2007 IP
  12. 3l3ctr1c

    3l3ctr1c Peon

    Messages:
    380
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #12
    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.
     
    3l3ctr1c, Apr 6, 2007 IP
  13. nico_swd

    nico_swd Prominent Member

    Messages:
    4,153
    Likes Received:
    344
    Best Answers:
    18
    Trophy Points:
    375
    #13
    After the change it does work for me on IE. (6)
     
    nico_swd, Apr 6, 2007 IP
  14. 3l3ctr1c

    3l3ctr1c Peon

    Messages:
    380
    Likes Received:
    14
    Best Answers:
    0
    Trophy Points:
    0
    #14
    I'm on IE7, it still shows up the error.
     
    3l3ctr1c, Apr 6, 2007 IP