Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question

6 Answers

up vote 2 down vote accepted

If you want custom selection that is your syntax streight from the UI api

$( "#selectable" ).selectable({ filter: 'div:not(.image)' });  

Check it out: http://jsfiddle.net/bBBER/8/

You can be even more spesific

$( "#selectable" ).selectable({ filter: 'div.item:not(.image)' });

http://jsfiddle.net/bBBER/9/

share|improve this answer
Had to modify a little bit, but works a charm! – user789122 Jan 17 at 11:12

Try this:

$( '#selectable > div:not(.image)' ).selectable ();

This selector will select all child divs of #selectable that don't have the image class.

share|improve this answer

You can iterate on each element and then avoid those with class image. Like :

$('#selectable').each(function(div) {
 if (!$(this).hasClass('image'))
   {
     $(this).selectable();
   }
});
share|improve this answer

try the following

  $('div.image').removeClass('selectable');
share|improve this answer

Use :not selector to exclude elements with image class

$('#selectable').children("div:not(.image)").selectable();
share|improve this answer
Why downvote? It is workable solution. – Aleksandr M Jan 17 at 10:59
I guess it's because this selects way more than intended; namely (almost) all children of .image and (almost) all children of elements that are also selected. – Jan Dvorak Jan 17 at 11:03
1  
Ahh..., should be .children not .find. – Aleksandr M Jan 17 at 11:09
Returning you to 0 – Jan Dvorak Jan 17 at 11:12

I imagine not as the parent div is selectable and thus everything contained will inherently be selected as they are children of that div. You could simply take some elements out of the selectable div?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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