hi all
is it possible to find with jQuery an id that start with something, then a specific string, and then something.
for example
lets say that i have this divs
<div id="first_search_div1"></div>
<div id="second_search_div2"></div>
<div id="third_bla_div3"></div>
i want to find this patern: *search*
the result should the first div and the second but not the third.
is this even possible?
10x