How can I find a particular attribute that contains another specific attribute attribute? for example:
<a class="fc-draggable" data-belongs="3" data-target="2"></a>
I can select all elements that contain a given attribute using:
$('*[data-belongs="3"]');
But how do I select all data-belongs='2'
that contains data-target='3'
?