Our goal is to hide the div that has classes k-header and k-grid-toolbar, which is a child of the g-m div:
<div id="g-m" data-controllername="b-p-d" data-create="false" data-edit="false" data-update-url="/BPD/BPDPrint.aspx" data-delete="false" data-export="false" data-role="extendedgrid2" class="k-grid k-widget" style="height: 230px;">
<div class="k-header k-grid-toolbar">
We have attempted the following methods, but none have produced the desired outcome:
1. $('div.k-header.k-grid-toolbar').hide();
2. $("div.k-header.k-grid-toolbar:not([id])").hide();
3. $('#g-m').find(".k-grid-toolbar").hide();