[jQuery] Child elements

[jQuery] Child elements


jQuery has finally managed to make me feel stupid. I've been using it
a while and never had any problems, until today.
What's the proper way to specify the 'acc-ct' div inside
NoteModalDialog? So far I've tried...
$("#NoteModalDialog").find("#acc-ct")
$("#NoteModalDialog #x-dlg-bd #x-dlg-tab #acc-ct")
$("#NoteModalDialog > #x-dlg-bd > #x-dlg-tab > #acc-ct")
None worked. I feel stupid.
<div id="NoteModalDialog">
    <div class="x-dlg-hd">Request Notes</div>
    <div class="x-dlg-bd">
    <div class="x-dlg-tab" title="">
            <div id="RequestNoteForm"></div>
            <div style="font-size:1.1em; font-weight:800;">Previous Notes</div>
            <div id="acc-ct" style="width:100%; height:200px">
            </div>
        </div>
    </div>
</div>