Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing the following code to remove all the children of UL.Is it right to do.ALl the childrens are li element.

thickBoxProductLists is the id of UL element

             $('#thickBoxProductLists').children().remove();
share|improve this question
8  
and whats your problem? – Fender Aug 4 '11 at 12:36
2  
where is your question? it does not work? or? – CrisDeBlonde Aug 4 '11 at 12:39
remove is for removing elements. You want to remove elements. I don't see any problem here. – Felix Kling Aug 4 '11 at 12:46
2  
This is my favourite question. – Russell Jan 16 '12 at 16:51

closed as not a real question by casperOne Jan 18 '12 at 17:37

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

try this instead there is no remove i guess$('#thickBoxProductLists').empty();

share|improve this answer
there is a remove api.jquery.com/remove – Fender Aug 4 '11 at 12:41
yes but empty got the job done didn't she ??? – Qchmqs Aug 4 '11 at 12:42
i dont know which job. Saurabh did not mention what to do. I just mentioned that there is a remove function in jQuery ;-) – Fender Aug 4 '11 at 12:42
OK i THink you should try $('#thickBoxProductLists li').remove(); – Qchmqs Aug 4 '11 at 12:44
1  
$('#thickBoxProductLists li').remove(); will remove the element with that id and not only its children – Fender Aug 4 '11 at 12:44
show 6 more comments

If you have only li elements inside your ul tag ,Jquery's remove() function is alll what you want...

But if you have other text or etc, use empty() function...

share|improve this answer
ul elements are not supposed to have (non-empty) text nodes as children anyway. – Felix Kling Aug 4 '11 at 12:44

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