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();
|
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
|
|||
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.
|
try this instead there is no remove i guess |
|||||||||||||
|
|
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... |
|||
|
removeis for removing elements. You want to remove elements. I don't see any problem here. – Felix Kling Aug 4 '11 at 12:46