The event-propagation tag has no wiki summary.
266
votes
6answers
51k views
event.preventDefault() vs. return false
When I want to prevent other event handlers from executing after a certain event is fired, I can use one of two techniques. I'll use jQuery in the examples, but this applies to plain-JS as well:
#1 ...
13
votes
3answers
3k views
Prevent scrolling of parent element?
I have a little "floating tool box" - a div with position:fixed; overflow:auto.
Works just fine.
But when scrolling inside that box (with the mouse wheel) and reaching the bottom OR top, the parent ...
6
votes
3answers
5k views
Event propagation in Javascript
If I have an element (html) nested in another element and both of them have a click handler attached, clicking the inner element executes its click handler and then bubbles up to the parent and ...
11
votes
6answers
6k views
How do I prevent a parent's onclick event from firing when a child anchor is clicked?
I'm currently using jQuery to make a div clickable and in this div I also have anchors. The problem I'm running into is that when I click on an anchor both click events are firing (for the div and the ...
2
votes
2answers
463 views
event.stopPropagation() not working in chrome with jQuery 1.7
For some reason clicking the document isn't working in Chrome (the closeQuickView is not being called).
The elements are loaded via AJAX and so need to have .on() (previously .live() which is now ...
1
vote
2answers
785 views
jQuery: How to stop propagation of a bound function not the entire event?
I have a click function bound to many elements. It is possible that sometimes these elements may sit within one another. So, the click event is bound to a child and also bound to its parent. The ...
4
votes
1answer
3k views
Javascript : How to enable stopPropagation?
With object.stopPropagation() I can stop event bubbling but how can I re-enable it?
Is there a pre defined function in js something like object.startPropagation?
EDIT:
The Problem is that the JS ...
2
votes
1answer
705 views
Propagation of touch events
I've got some ListView. Each list element is constructed using layout looking like this:
<SomeRootLayout android:background="@layout/some_other_selector">
<TextView ...
0
votes
2answers
497 views
JavaScript: Is there any performance benefit to stopping event propagation?
Is it considered 'good practice' to stop JavaScript event propagation - does it benefit performance in any way?
I'm wondering if there is benefit outside of layout purposes where you stop ...
1
vote
1answer
103 views
Watermark label positioned over top of select stops click propagation
I've created a watermark/hint solution for a drop down where I absolutely position a label over top of a select element.
Unfortunately, when the user clicks where the label is, the drop down doesn't ...
1
vote
1answer
227 views
Excluding form fields from keypress handler assigned to body
I have a keypress handler on a web page assigned to the body element. I really do want it to be active anywhere in the web page. Or so I thought. The keypress events in textual input forms also ...
0
votes
2answers
102 views
Why does redirect happen before my jquery click event is fired for a html anchor element?
I'm trying to trigger the OnBeforePageUnload only when the user closes the tab or browser window. When the user navigates on my website, I have a custom mechanism that will trigger a warning dialog to ...