vote up 1 vote down star

I'm bulding some drag and drop widgets in jQuery, once they've been dropped I need to check if my drag and droppable widget are inside another div.

<div id="droptarget">
    <div class="widget">I'm a widget!</div>
</div>

I've had a look at $('#droptarget').each but can't seem to figure it out. Any ideas?

flag

2 Answers

vote up 3 vote down check

If you want to select the outer div:

$("#droptarget:has(div.widget)")

If you want to select the widget:

$("#droptarget > div.widget")
link|flag
as simple as :has! thanks – Tom May 21 at 11:35
vote up 0 vote down

I would start with

if ($ ('#droptarget .widget')) {
  // do something
}
link|flag
2  
$('#droptarget .widget') would always return an object, hence evaluate to true. You'd want to check if ($('#droptarget .widget').length > 0) – Mario Menger May 21 at 11:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.