I just wonder on how to remove specific html elements inside div.
Using JavaScript, I research already removing child but I found only removed one element with the array order like [0] and removed all child. My problem is how to remove the specific html multiple tags element.
Need to remove all <Ul> elements inside #custom_description_video div
Here is the sample image:

<ul>elements that are direct children of the#custom_description_videoelement?for (const ul of document.querySelectorAll('#cutom_description_video ul')) ul.remove()