How do I select a element using it's element type (Div), a class (spaceEvent) and a data attribute (data-event-id)?
here is an example of a element
<div class="spaceEvent" data-event-id=112>
and I want to find this element so that I can search for stuff inside it?
my guess would be something like
$("div.spaceEvent").find("[event-id=112]")
but I'm not sure!