I have a main div, with sub divs inside:
<div id="selectable">
<div class="item text"></div>
<div class="item image"></div>
<div class="item text"></div>
</div>
When I add the jQuery of:
$('#selectable').selectable();
All of the divs inside are thus selectable.
Is there a way to remove the selectable class on the div that has a class with 'image'?
Thanks
