I have been looking for something similar to what i'm trying to implement but haven't found it on stack or across the net. Using Jquery Selectable, but have more than one set of ul's:
<div>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
</div>
What i want to be able to do is if i select '1' from any of the options, all the other '1's are disabled. The same goes for all the other selection options, so basically you can only select one of the same options at a time. I can do this with radio buttons, using the name and value tags, but not really sure how to implement it within the selectable interface? Thanks ahead for any help or if someone can point me to a similar application.