[jQuery] How to select all tag with certain class
I just want to select all LI with class="highlight-with-red",
excluding other tag with class="highlight-with-red" (e.g. P tags).
<LI>This is line one
<LI class="highlight-with-red">This is line Two
<LI>This is line Three
<LI class="highlight-with-red">This is line Four
<LI>This is line Five
<LI class="highlight-with-red">This is line Six
<LI class="highlight-with-red">This is line Seven
<LI>This is line Eight
<LI>This is line Nine
<P>This is Para 1</P>
<P class="highlight-with-red">This is Para 2</P>
May I know how this can be achieved?
Thanks