Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code :

$('.TopNotificationIcon span').remove();    

Can I replace .TopNotificationIcon with this i.e only span exists inside this specific class.

This is the structure

<div class="TopNotificationIcon"><span>xxxxx</span></div>

On click of .TopNotificationIcon, span should be removed.

share|improve this question
2  
not sure to understand exactly what you want? Do you want to test if a span is under a certain class or remove all span under TopNotification in a function? – Brice Favre May 24 '11 at 15:13

5 Answers

up vote 3 down vote accepted

if you have click event for .TopNotificationIcon you can do something like this

$('.TopNotificationIcon').click(function(){
    $('span',this).remove();    
});
share|improve this answer
+1 This seems to be the best solution to this. – bažmegakapa May 24 '11 at 15:20
my error was different but community claims this to be correct. so thanks for the tip hoping it's correct no time to check it out – Web Developer Jun 1 '11 at 11:44

I would use the find() method, as it seems to be the fastest:

$("div.TopNotificationIcon").click(function() {

    $(this).find("span").remove();    

});
share|improve this answer
The context used by @TheSuperTramp is just a shorthand to find(). – bažmegakapa May 24 '11 at 15:22
Yes, but that just turns around and does a find(), does it not? So, wouldn't it be more prudent to just use find() directly? – Scott May 24 '11 at 15:33
The difference is so minimal that you should use the one that is more readable and logical to you :). – bažmegakapa May 24 '11 at 20:07
@bazmegakapa - The gurus that I listen to always say that find() > context. I know what you are saying, but what is minimal in the simplest form, could be larger in a complex form. So removing an extra operation could be noticeable. – Scott May 24 '11 at 20:26
That's the kind of micro-optimization my gurus keep me away from. – bažmegakapa May 24 '11 at 21:24

Try this...

$('span').remove('.TopNotificationIcon');

This will remove all span elements with the class TopNotificationIcon and also child elements

share|improve this answer
This is not what the OP wanted. .TopNotificationIcon is one of the parents of the span to be removed. – bažmegakapa May 24 '11 at 15:16
yes you r right @bazmegakapa – Web Developer May 24 '11 at 15:17

Yes but youd need to change the line to:

$(this).children('span').remove();

js fiddle: http://jsfiddle.net/UNhhh/1/

share|improve this answer

If you want to remove all span under TopNotification you can do this :

$('div').live('click', function(){
    $(this).children('span').remove();    
});

It will remove all children in a div.

share|improve this answer
This is unnecessarily verbose. $('.TopNotificationIcon span').remove(); is quite enough. – bažmegakapa May 24 '11 at 15:21
Yeah you're right. There is another proposition. – Brice Favre May 24 '11 at 15:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.