I have a div "editableDiv" which is nested inside another div. editableDiv has an unordered list as its child item. Please go through the code
<div>
<div id="editableDiv" contenteditable="true">
<ul id="suggestUL"></ul>
</div>
</div>
Question is, how to find the innermost ul suggestUL
Thanks in advance.