<div class="parent">
        <div class="child">
        </div>
    </div>
    <script type="text/javascript">
    $(document).on("click", ".parent", function(event){
        doAjaxCall();
    });
    $(document).on("click", ".child", function(event){
        doSomething(); // and DON'T call doAjaxCall();
    });
</script>
event.stopPropagation();また、機能しreturn false;ていません。何が問題なのですか?
編集:わかりました、それはjs fiddleで動作していることは明らかです:http://jsfiddle.net/Smbb4/ コードをもう一度確認する必要があります。
Edit2:解決策:
    $('.parent').click(function(event) {
        if ( $(event.target).closest('.child').length > 0 ) {
            var close = $(event.target).closest('.child');
            var windowID = close.data('windowid');
            closeWindow(windowID);
            return false;
        }
        });