Jump to content

Link in Ajax return


Suchy

Recommended Posts

Hi guys I am having a problem with jQuery + Ajax.

 

When a user tries to registers (a new account) + enters a username that is in MySQL + a wrong password (associated with that username), he gets this message

   $('#pass-reminder').click(function() 
    {
	alert('Password reminder');
   		 return false;
     }); 

...

$.ajax
({
	type: "POST",
	url: "register.php",
	data: input_data,
	success: function(return_data) 
...
if(return_data == 0)
{
   $("#submited .message").html('Our record indicate that you already have an account.<br>
     If you forgotten your password<span class="link"><a id="pass-reminder" href="#"> click here</a></span>');
}
...

        } 
     }); 

 

 

For some reason the function does not get called when I click on the link, but when I place the link (<a id="pass-reminder" href="#"> click here</a></span>)  anywhere on the page it works.

 

Any workaround this ?

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.