SyntaxFix
Write A Post
Hire A Developer
Questions
I personally would add a click handler to the child element that did nothing but stop the propagation of the click. So it would look something like:
$('.example > div').click(function (e) { e.stopPropagation(); });