So I have the following html object, I want to select it based on the data-value
[<span class="selecter-item selected" data-value="CS 245">CS 245</span>]
I tried something like this, but it does not work.
$("span[data-value='CS 245']")
Anybody knows how to do it?