Problem: Given a specific container dom element (the window, a div, a fieldset, etc), find all elements of a class (.FormWidget) inside that DOM element, searching recursively through all of that container's descendants. Include, but do not look inside, elements with the matching class (.FormWidget). The elements can be nested to n levels.
For example, given this HTML:
<fieldset id="MyFieldset" class="FormWidget FieldSetMultiplier">
<legend>My Legend</legend>
<div>
<label for="Field1">Field1</label>
<input type="text" name="Field1" value="" id="Field1" class="BasicInput FormWidget">
</div>
<div id="SomeWidget" class="FormWidget">
<label for="Field2">Field2</label>
<div name="Field2" id="Field2" class="FormWidget RestrictedComboBox"></div>
<input type="text">
</div>
</fieldset>
<div>
<label for="Field3">Field3</label>
<input type="text" name="Field3" value="" id="Field3" class="BasicInput FormWidget">
</div>
Example 1:
Let the pseudo Jquery function ".findButNotInside()" represent the functionality I'm looking for.
$(document).findButNotInside('.FormWidget');
Should return only #MyFieldset and #Field3. Starting from the window, field 1 and 2 and #SomeWidget are FormWidgets, but they can't be included since the function is not allowed to look inside other .FormWidgets to find FormWidgets. Anything inside the .FormWidget fieldset is off limits.
Example 2:
$('#MyFieldset').findButNotInside('.FormWidget');
Should return only #Field1 and #SomeWidget. It should be looking for .FormWidgets that are inside the targeted fieldset, #MyFieldset, but should not return #Field2 because it is not allowed to look inside of a .FormWidget (in this case #SomeWidget) to find other .FormWidgets.
I'm thinking this can be done with the right function and selector, but I'm not sure of how that selector should be constructed?
#Field2– Shmiddty Sep 27 '12 at 15:04