With jquery, is there a selector statement that directly gets all DOM objects with an attribute of a specific string length?
For example, in the html below, only nodes with a string length class of 3 => are extracted, displaying divs with classes one and two?
<div class="one"></div> <div class="two"></div> <div class="three"></div>
source share