I have the following HTML:
<div data-role="page" id="some">
<p>Hello world</p>
<div data-role="panel" id="panel">
<p>I'm a panel</p>
</div>
</div>
I need to fire a function if the user clicks on the page, but not if he clicks on the panel.
Is this possible = registering a click on an element excluding some of it's children? I'm currently trying like this but it doesn't seem to work:
$('div:jqmData(role="page"):not(#panel)').live('click tap', function(event) {
console.log("registered a click");
// fire a function
});