I have a certain div and top of that there's another image. I have given onClick methods for both my div and image. I wanted to stop firing the onClick method given for the below div when clicking on the image that is on top of the div.
I was able to stop it using e.stopPropagation();
.But later i had to add another method to the onClick of the image. After adding it, my e.stopPropagation();
stopped working. How can i fix this.
When the code worked
enlarge() {
if (!e) var e = window.event;
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
this.setState({
showFullImage: true,
});
}
<div onClick={() => this.handleClick(content.post_poll_content_id)}>
<div className="float_right full_div" onClick={this.enlarge}>
<img src={extend} className="extend_icon" />
</div>
</div>
When the code stopped working
enlarge() {
if (!e) var e = window.event;
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
this.setState({
showFullImage: true,
});
}
passImage(img){
if (!e) var e = window.event;
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
this.setState({
img:img
})
}
<div onClick={() => this.handleClick(content.post_poll_content_id)}>
<div className="float_right full_div" onClick={()=>{this.enlarge();this.passImage(content.content);}}>
<img src={extend} className="extend_icon" />
</div>
</div>
I guess you misunderstood
stopPropagation()
.You need to implement a custom logic, if you want to stop propagation of code from
enlarge()
topassImage()
. Lets sayenlarge()
sets a variable whichpassImage()
validates before execution.If you really meant to stop propagation of execution from
onClick
of inner div to the outer div, it works for me. Following is a code snapshot you can test too.``
``
[Debugging hints] I can think of a few possible situations when your
stopPropagation()
would fail are:stopPropagation()
by printing log statements.