my issue is finding all objects with a specific prefix in the classname, like in the following portion of html I'd like to be able to get us_mr and us_she with a single statement.
<div>
<div class="us_me">Some about me</div>
<div class="us_she">Some about she</div>
<div class="they_she">Some about others</div>
</div>
this what I tried
$(".^us_")
assuming it would have found
<div class="us_me">Some about me</div>
<div class="us_she">Some about she</div>
but got syntax error