[jQuery] Re: Jquery remove dd problem

2009-01-30 Thread NicholasPufal
Yes. That was the problem. After I did post it here, I did realize the dumb mistake I've done :ninja: Thanks a lot for the reply! amuhlou wrote: > > > It looks like $("#list_sucesso dt dd").remove(); is the problem. The > way you've written the selector, it would look inside the for the

[jQuery] Re: Jquery remove dd problem

2009-01-30 Thread amuhlou
It looks like $("#list_sucesso dt dd").remove(); is the problem. The way you've written the selector, it would look inside the for the to remove. $("#list_successo dl dd").remove(); should get the one you're after.