Jump to content

[SOLVED] jQuery if problem


alex3

Recommended Posts

Hi,

 

I'm having problems with an 'if' statement inside a $.post statement. I haven't put this in AJAX because I don't think the problem is with post, but rather something wrong with the 'if' statement I can't see.

 

$.post(
"login_check.php", // File to POST to
{ username:userName, password:passWord }, // Data to POST to file
		function(data) { // Function to call after POST, 'data' is data recieved from POST file
	if(data=="yes"){
		alert('woop');
		window.location='index.php'; }
		else {
		alert('dang');
		$('form #submit').show(); }
	}
);

 

I really can't see the problem with the 'if' statement, but even if I put the right values in to the form, I always get the 'dang' pop up. I know that the values are right because if I go to index.php (which verifies that a user has logged in) it verifies correctly. userName and passWord are variables defined earlier.

 

What have I missed?

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.