I\'m aware that live calls bubble up through the doccument and that is why I\'m having issues.
Unfortunately I\'m using third party libraries that bind elements and wou
U can use
$("#outer").bind('click',function(e){ alert("outer clicked"); }); $('#outer').on('click',"#inner",function(e){ e.stopImmediatePropagation(); alert("inner clicked"); });