I want to find and select all element which have data attribute start with "data-qu" under wrapper div. How can I do this with using jquery?
HTML
<div class="wrapper">
<div data-qu-lw="1"></div>
<div data-qu-md="2"></div>
<div data-res-kl="1"></div>
<div data-qu-lg="3"></div>
</div>
Is there a way select those, like this $('.wrapper').find('^data-qu')
or similar?