I have a series of li items that I want to select based on the class name and if it contains the string 'award'
I have the following html..
<li class="award"></li>
<li></li>
<li class="award-open"></li>
How do I select the two li items that have the class with the string 'award' in it?