Is there a way to find all the child elements of a div that has id like:-
child_*_of_parent
HTML
<div id="parent">
<div id=child_1_of_parent>...</div>
<div id=child_2_of_parent>...</div>
<div id=child_3_of_parent>...</div>
<div id=some_other_id_1>...</div>
<div id=some_other_id_2>...</div>
</div>
I want all children with ids:- child_1_of_parent, child_2_of_parent, child_3_of_parent
My Try
jQuery("#parent").find("div[id='child_*_of_parent']");