Jump to content

jquery selectors problem


AviNahum

Recommended Posts

hey,

 

$("a[name^=del_comment]").click(function() {
$.ajax({
	type: "GET",
	url: "index.php?userid={$core->input['userid']}&CODE=delete_comment&id="+$(this).attr('id'),
	context: document.body,
	success: function(msg){
		alert(msg);
		$('#all_comments').fadeOut('slow').load("index.php?userid={$core->input['userid']}&CODE=get_comments").fadeIn('slow');
	}
});
return false;
});

 

all i trying to do is to set an "onclick" event to all <a> tags which there names starts with "del_comment"

 

<a href="#" name="del_comment[]" id="{$id}">X</a>
<a href="#" name="del_comment[]" id="{$id}">X</a>
<a href="#" name="del_comment[]" id="{$id}">X</a>
<a href="#" name="del_comment[]" id="{$id}">X</a>

 

this code works fine, but for some reason, when i hit one of the links, this works, but if i try to hit again one of them, this will not work,

i mean this works only one time and i have to reload the page to get it wrok again...

hope you understand...

 

sorry for my poor english...

 

THANKS!

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.