Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Hey everyone, I have some problems with a (I think simple) form submitting with ajax.

The first time the user submit the form, everything goes OK: The content of the div changes and the php is processed. But if there is no match in my DB it will return "f" and the javascript will write back an unusable form that can't be re-submitted with ajax.

The HTML:

<div class="maincontainer" id="login">

  <form id="loginform" onsubmit="void login();return false;">

    <input name="username" type="text" class="textboxinput"  id="username"  autocomplete="off" />
    <input name="password" type="password" class="textboxinput" id="password"  autocomplete="off" />
    <input type="submit" name="button" class="button" id="button" value="Login" /> 
  </form>
</div>

The Javascript:

function login(){

    //Change the box content to "Logging in"
    $("#login").html("<p style='line-height:170px;text-align:center;width:100%;margin:0px;padding:0px;'>Logging in</p>");

    //Get the values of the username and password field
var username = $('#username').val();
var password = $('#password').val();

    //Make the ajax request
$.ajax({        
        datatype: "text",
        type: "POST",
        url: "process.php",
        data: "username=" + username + "&password=" + password,
        success: function (m) {

        //If there's no match, rewrite the form in the div  
            if ( m == "f"){
                content= "  <form id='loginform' onsubmit='void login();return false;'><input name='username' type='text' class='textboxinput' id='username' autocomplete='off' /><input name='password' type='password' class='textboxinput' id='password' autocomplete='off' /><input type='submit' name='button' class='button' id='button' value='Login' /> <p style='font-size:small;'>Login failed, please try again</p></form>";         
                $("#login").html(content);
            }
        }

    });



};

EDIT

I didn't find the problem but I did find a solution which is not to erase my form, only hide it

HTML:

<div class="maincontainer" id="login">
    <div id="errorbox"></div>
     <form id="loginform" onsubmit="return login();">

    <input name="username" type="text" class="textboxinput username"  id="username" value="username"  onfocus="if(this.value==this.defaultValue) this.value='';"   onblur="if(this.value=='') this.value='username'" autocomplete="off" />
    <input name="password" type="password" class="textboxinput password" id="password" value="password"  onfocus="if(this.value==this.defaultValue) this.value='';"  onblur="if(this.value=='') this.value='password'" autocomplete="off" />
    <input type="submit" name="button" class="button" id="button" value="Login" /> 
    <div id="errorshow"><a href="register.php">Register</a><a href="credsretrieve.php">Forgot your login infos?</a></div>
  </form>
</div>

Javascript:

function login(){

    var username = $('#username').val();
    var password = $('#password').val();

//Do security checks here


    $("#loginform").hide();

    $("#errorbox").html("<p class='logloading'>Logging in</p>");

    $.ajax({        
        datatype: "text",
        type: "POST",
        url: "login.php",
        data: "username=" + username + "&password=" + password + "&method=js",
        success: function (m) {

            if ( m == "f"){ 
                $("#errorbox").html("");
                $('#username').val("");
                $('#password').val("");
                $("#loginform").show();
                $("#errorshow").html("<p class='errormsg'>Wrong username/password combination</p>");
                $("#username").focus();

            }

            else{
                window.location = m;                
            }
        }

    });
    return false;
};

Oh, and I should thank everybody that commented here (and posted) every info helped me a bit.

share|improve this question
1  
what is the problem and what are you trying to accomplish? – Cfreak Apr 23 '11 at 18:32
How do you manage to read username and password since you change container's HTML before reading their values? Have you checked what are their values at all? – Robert Koritnik Apr 23 '11 at 18:32
@Cfreak the new form won't use javascript – precond Apr 23 '11 at 21:17
Have you checked your page with Firebug? Checkout the Firebug console, usually it shows you a message if there is something odd happening. Otherwise you might want to checkout Firebug's debugger and set a breakpoint. And you can also inspect your HTML/div-structure in the "HTML"-tab. (before vs. after...) – Philip Apr 23 '11 at 21:19

2 Answers

Just a fix, not an explicit answer to your original question.

I'd use

data: $('#form_id').serialize()

instead of manually doing all of this:

data: "username=" + username + "&password=" + password,

What happens when the user submits a space? Your query breaks.

Just make sure the username box has a name of username and the password box follows the same pattern.


EDIT

This code is a bit odd:

onsubmit='void login();return false;'

Instead of manually inputting this, try this code (just delete that part and insert this):

$('#loginform').live('submit', function(e) {
  login();
  e.preventDefault()
});
share|improve this answer
Thanks. It's a quickly written script, I know there are many security issues. – precond Apr 23 '11 at 19:24
See my edit, maybe it's help. – Blender Apr 23 '11 at 19:47
re-Thanks! But it didn't solve my problem, actually I could have put the "return false;" in login(). – precond Apr 23 '11 at 20:07
You should also use preventDefault instead of return false; – simao Apr 24 '11 at 13:48
Gotcha. Thanks, I've edited my answer. – Blender Apr 24 '11 at 15:39

I think I ran into this problem a while back as well.

A plausible workaround would be to put the login function on the onclick of the submit button instead (and have that return false as well)

share|improve this answer
Yeah. I tried, didn't work for me and will prevent a user from hitting enter after writing the password on some browsers. Thx anws – precond Apr 24 '11 at 23:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.