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
https://forums.phpfreaks.com/topic/263025-link-in-ajax-return/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.