Workaround for stopping propagation with live()?

Posted by bobsoap on Stack Overflow See other posts from Stack Overflow or by bobsoap
Published on 2010-04-05T02:05:04Z Indexed on 2010/04/05 2:13 UTC
Read the original article Hit count: 197

Filed under:
|

I've run into the problem that has been addressed here without a workaround: I can't use stopPropagation() on dynamically spawned elements.

I've tried creating a condition to exclude a click within the dimensions of the spawned element, but that doesn't seem to work at all.

Here is what I got:

1) a large background element ("canvas") that is activated to be "sensitive to clicks on it" by a button

2) the canvas, if activated, catches all clicks on it and spawns a small child form ("child") within it

3) the child is positioned relative to the mouse click position. If the mouse click was on the right half of the canvas, the child will be positioned 200 pixels to the left of that spot. (On the right if the click was in the left half)

4) every new click on the canvas removes the existing child (if any) and spawns a new child at the new position (relative to the click)

The problem: Since the spawned child element is on top of the canvas, a click on it counts as a click on the canvas. Even if the child is outside of the boundaries of the canvas, clicking on it will trigger the action as described in 4) again . This shouldn't happen.

=========== CODE: The button to activate the canvas:

$('a#activate').click(function(event){
    event.preventDefault();
    canvasActive(); 
});

I referenced the above to show you that the canvas click-catching is happening in a function. Not sure if this is relevant...

This is the function that catches clicks on the canvas:

function canvasActive() {
    $('#canvas').click(function(e){
        e.preventDefault();

        //get click position relative to canvas
        posClick = {
            x : Math.round(e.pageX - $(this).offset().left),
            y : Math.round(e.pageY - $(this).offset().top)
        };

        //calculate child position
        if(posClick.x <= $canvas.outerWidth(false)/2) {
            posChild = {
                x: posClick.x + 200, //if dot is on the left side of canvas
                y: posClick.y
            };
        } else {
            posChild = {
                x: posClick.x - 600, //if dot is on the right
                y: posClick.y
            };
        }

        $(this).append(markup); //markup is just the HTML for the child

    });
}

I left out the unimportant stuff. The question is:

How can I prevent a click inside of a spawned child from executing the function? I tried getting the child's dimensions and doing something like "if posClick is within this range, don't do anything" - but I can't seem to get it right.

Perhaps someone has come across this dilemma before. Any help is appreciated.

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-live