Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have something similar to the following:

 <div onclick="divClickEvent();">
   <img onmousedown="imgOnDownEvent();" />
 </div>

The problem is that if you mouse down on the img, the div click fires on mouse up. I tried to override the div onclick by adding an onclick="return false;" to the img element, but the div onclick is still firing. I also have a cancel bubble and return false in a document onmouseup event (which gets attached dynamically in the img ondown event).

I've run out of ideas. Why is the div still processing the event, and how do I stop it?

share|improve this question

2 Answers

up vote 1 down vote accepted

cancelBubble is Deprecated.

Use event.stopPropagation() instead of cancelBubble [non-standard method] in the onclick event of the image.

which prevents further propagation of the current event.

share|improve this answer
yes that's fixed it thanks! – fearofawhackplanet Nov 27 '09 at 11:55
1  
IE doesn't support stopPropagation... I assume I should use cancelBubble in IE? – fearofawhackplanet Nov 27 '09 at 13:14

Consider using an abstraction framework like jQuery, where you can stop propagation with the same method regardless of the browser version:

<div id="image_holder">
     <img id="some_image" alt="" src="" />
</div>

<script type="text/javascript">
     $(document).ready(function(){ // This will be run when DOM is ready
          var holder = $('#image_holder'),
              someImage = $('#some_image');

          someImage.bind('mousedown', function(event){ 
              // This will be run on mousedown
              event.preventDefault().stopPropagation();
          });
     });
</script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.