Jump to content

error code is hanging


richei
Go to solution Solved by richei,

Recommended Posts

I'm in the mist of doing a login script for a new site.  I have the script working, just as long as you get it right the first time, because after that, it seems to hang on the delay.  Script is below

$("#login_button").click(function() {
  $.post("inc/login.php", $("#loginForm").serialize(), function(data) {
   var login = data.login;
   var message = data.message;
   if(login == true) {
    $("#login").empty().delay(5000).fadeOut('slow');
   }
   if(login == false) {
    $("#login_window").css('visibility','hidden');
    $("#message").css('visibility','visible').html(message);
    $("#message").delay(4000).queue(function() {
     $("#message").empty().css('visibility','hidden');
     $("#login_window").css('visibility','visible');
    });
   }
  }, "json");
});

Basically, its supposed to show the returned error message for 4 seconds, then show the login form again.  I'm using a regular button, not the submit type button.  I don't have any errors in firebug.  Anyone have any ideas?

 

(i know about show and hide, but those caused entirely to many problems).

Edited by richei
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.