I have a div which could potentially have a hyperlink with an id of reply. How can I check if that a[id=reply] exists? I thought it might be something like this but it alerts the message even if that hyperlink does not exist.
if($('div[chunk_id='+reply_chunk_id+']').children('a[id=reply]')){
alert('test');
}
Check the
.lengthof the selector to see how many elements it matched, in this case:However, it sounds like you have multiple elements with
id="reply", which is invalid. Instead useclass="reply"and your selector will look like this: