How to hide this div with jquery
html:
<div class="BottomSmMargin MiniCheckDiv">
How to hide this div with jquery
html:
<div class="BottomSmMargin MiniCheckDiv">
Depends on what you can use to qualify (the selector), but hide() (or toggle()) is probably what you're looking for.
$('div.BottomSmMargin').hide();
// or
$('div.MiniCheckDiv').hide();
// or both
$('div.BottomSmMargin').hasClass('MiniCheckDiv').hide();
$('.BottomSmMargin.MiniCheckDiv').hide()
Notice there is no space between the two classes here.