I have an html like so:
<div mydata style="..." class="..."></div>
I want to be able to select all divs that have mydata as an attribute so I can work with them in jquery. I've tried $('[mydata]')
but that doesn't seam to find anything.
Any thoughts?