I have a jQuery script that selects all IDs with 'Phone' in them. However, I have a small part that needs to NOT select them if they are in a class.
What I have, according to the way I understand it is this:
$("[id*='Phone']:not('referencePhones')").doSomething();
What am I missing?
.referencePhones is a parent class. ie:
div class="referencePhones"
span id="Phone"