I have the following document structure in :
...
...
<span class="clblue redcl turbocl">something</span>
<span class="clblue redcl turbocl">something</span>
<span class="clblue">something</span>
<span class="clblue">something</span>
...
...
In JavaScript (only) I want:
document.querySelectorAll("span.clblue")
to give span with ONLY 'clblue' class NOT all the span(s) with 'clblue' and also other classes.