Tagged Questions
The event-bubbling tag has no wiki summary.
21
votes
5answers
14k views
jQuery hide element when clicked anywhere on the page
I would like to know if this is the correct way of hiding visible elements when clicked anywhere on the page.
$(document).click(function (event) {
$('#myDIV:visible').hide();
});
The ...
8
votes
2answers
1k 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 ...
7
votes
2answers
344 views
What is the bubbling concept?
I've heard of events and SO answers "bubbling up", but what has all that got to do with bubbles?
6
votes
3answers
653 views
If you delete a DOM element, do any events that started with that element continue to bubble?
What behavior should I expect if I delete a DOM element that was used to start an event bubble, or whose child started the event bubble - will it continue to bubble if the element is removed?
For ...
5
votes
1answer
2k views
WPF Custom Routed event question
How do you get two unrelated controls to raise the same custom event? All examples I have seen so far have an event defined within a single control, should I be taking a different approach?
Eg. I'd ...
4
votes
2answers
2k views
Javascript with jQuery: Click and double click on same element, different effect, one disables the other
I have an interesting situation - I have a table row which, currently, shows it's hidden counterpart when I click the "Expand" button. The original (unhidden) row which contains the expand button also ...
4
votes
1answer
548 views
WPF Events in Winforms
I have an Winforms application that is using a WPF control (Avalon Edit if it matters) inside an ElementHost.
It seems to be working fine, but I would like to be able to handle KeyPress events of ...
4
votes
1answer
2k views
jQuery stopPropagation bubble down
I have a div with a link inside of it:
<div id="myDiv">
<a href="http://www.lol.com">Lol</a>
</div>
Clicking the <div /> should go somewhere, but clicking the ...
4
votes
1answer
1k views
disable event-bubbling c# wpf
I'm having the following problem:
When I got two labels into each other:
<Label x:Name="First" MouseUp="Label_MouseUp">
<Label x:Name="Second" MouseUp="Label_MouseUp_1">This is a ...
3
votes
3answers
120 views
Understanding event bubbling in javascript
I've been trying to understand even bubbling, and not quite sure I completely follow it. I started reading about it so that I could warn users when they were leaving a page on my website if they had ...
3
votes
1answer
1k 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 ...
3
votes
3answers
148 views
how to use event bubbling cancellation
I've looked everywhere for a code on how to stop event bubbling to occur, and I've found one from the Quirksmode website, which is this:
function doSomething(e){
if(!e) var e = window.event;
...
3
votes
2answers
156 views
Event Handling order
javascript jquery event handling
if on event (for example 'click') binded one function for parent element and another handler function for child DOM element, which of them are called?
If all of them ...
3
votes
3answers
943 views
Bubbling scroll events from a ListView to its parent
In my WPF application I have a ListView whose ScrollViewer.VerticalScrollBarVisibility is set to Disabled. It is contained within a ScrollViewer. When I attempt to use the mouse wheel over the ...
3
votes
4answers
687 views
Is event bubbling supported by all browsers?
jQuery uses event bubbling strategy to handle events.
And it claims to be cross browser,
but is "event bubbling" supported by all browsers?
There is another strategy: event capturing, which is ...
2
votes
2answers
274 views
Handled TreeView.SelectedItemChanged event still bubbles
I have a TreeView bound to a hierarchy consisting of several different classes via HierarchicalDataTemplates. When an item in the tree is selected, the SelectedItemChanged event of course happily ...
2
votes
2answers
184 views
Javascript event bubbling
I'm making a small site where if you click on the background, you get a colorpicker allowing you to change the background color.
The problem is that this colorpicker is now showing up no matter where ...
2
votes
1answer
183 views
click event not being fired when parent element prevents bubbling
I've tested in a few modern browsers with inconsistent results. I'm sure it has something to do with capturing vs bubbling event support differences. I've setup a test environment to replicate the ...
2
votes
3answers
2k views
Silverlight KeyDown event in behavior
In my Silverlight 4 DataGrid control, I wanted to attach a very simple Behavior which executes a custom command on key Press - actually, commit the selected item in the DataGrid on ENTER key press.
...
2
votes
3answers
400 views
jQuery e.target bubbling best practice?
In my heavy-ajax code, i always bind "click" the body tag & act depending on $(e.target) & using $.fn.hasClass(). However when i click on an anchor that has a </span> tag inside, my ...
2
votes
3answers
129 views
What is the preferred way to bubble events?
I have three objects ObjectA has an ObjectB, ObjectB has an ObjectC. When ObjectC fires an event I need ObjectA to know about it, so this is what I've done...
public delegate void ...
2
votes
2answers
1k views
capture click on div surrounding an iframe
How can i capture a click or mousedown event on a div surrounding an iframe. I've tried attaching the funciton to click event on the div but since the iframe never bubbles the event up to the ...
2
votes
1answer
109 views
JQuery and event bubbling… AGAIN
I am roughly working with the following:
var i;
var k = 5;
$('document').ready(function () {
$('#someElement').click(function (e) {
e.stopImmediatePropagation();
i++;
if ...
2
votes
3answers
354 views
Click event handler inadvertently bubbles, even after calling jQuery's stopPropagation()
I'm trying to have different delegate click handlers for different elements within "li" elements in a list. Example:
<ul id='myList'>
<li>
<p>First item.</p>
...
2
votes
2answers
513 views
Javascript Mouseover bubbling from children
Ive got the following html setup:
<div id="div1">
<div id="content1">blaat</div>
<div id="content1">blaat2</div>
</div>
it is styled so you can NOT hover div1 ...
2
votes
2answers
156 views
Where can I find a good tutorial on bubbling?
I'm new to C# and would like to allow to Windows forms to comminicate with each other. I googled bubbling in C# but it wasn't much help. What are some good ways I can learn bubbling?
EDIT: I want to ...
1
vote
3answers
34 views
Shouldn't returning false prevent jQuery on() from bubbling up?
According to the jQuery docs
Returning false from an event handler will automatically call
event.stopPropagation() and event.preventDefault(). A false value can
also be passed for the handler ...
1
vote
2answers
41 views
Why “click”,“delegate” and “live” behave differently in terms of event bubbling using jQuery?
I wrote a sample JavaScript program to demostrate the confusingly different event bubbling behavior of jQuery's function, click, delegate and live.
Here is the demo page.
For each function, there ...
1
vote
2answers
43 views
jQuery event bubbling on button not working as expected in Firefox
I have a <button> element inside of which I have 2 <span> elements. I have 2 attached jquery click event handlers for each of the span elements so I can do whatever I like for each click. ...
1
vote
1answer
45 views
disabled input stops event bubbling
If I've got an input element (for example: <input type="text" disabled="disabled"> ), this input stops the mouseover event bubbling. If I remove the disabled attribute, the container element of ...
1
vote
6answers
141 views
jQuery event bubbling
I specifically wanted to understand how exactly to interpret bubbling..Does it mean going up the HTML code hiearchy or something else?
Also I was going through an example on
...
1
vote
2answers
200 views
Do hover events bubble?
My parent DIV will have many clickable children, so using event delegation I'm trying to capture both the childrens click and hover events on the parent DIV as they bubble up.
Now the click event ...
1
vote
2answers
128 views
How to preserve a child element's bind functions in jQuery/javascript
I have some tags that I want to bind to a function within jQuery's datepicker. However, jQuery automatically binds another function to the parent (.ui-datepicker-inline) div's mouseover and mouseout ...
1
vote
1answer
208 views
Why is dragging in Raphaël broken by stopping propagation of mousemove in an enclosing element in the bubble phase?
I am trying to debug an event handling bug in a complicated web application, but I've reduced the problem to a simple example that demonstrates the behaviour that I'm confused by.
My example page, ...
1
vote
2answers
96 views
How to implement event order in parent/child elements using jquery
I have a parent & child elements in my web page where both have separate event handlers defined for them. I have tested in firefox, where the event handler for parent element gets executed first. ...
1
vote
1answer
61 views
Why does a bound event activate twice in jQuery?
I have some HTML:
<div class="form-item">
<a id="listStandardsLink" target="_blank" class="" href="/connect/arisbrowser/standards">Select Standards</a>
</div>
And my ...
1
vote
3answers
174 views
Javascript Event Bubbling
I have this setup
<div onclick="SomeEvent">
<input type=checkbox value=1>1
<input type=checkbox value=2>2
<input type=checkbox value=3>3
</div>
The problem when the user ...
1
vote
1answer
176 views
$(window).mouseup handler in a Chrome extension is breaking Flash
I'm working on a Google Chrome extension that monitors mouse events. For some reason the following javascript code in the extension's content script is causing embedded Flash content to break:
...
1
vote
2answers
111 views
How would we go about measuring if it is more performant to call e.stopPropagation() or not?
I want to measure if it is more beneficial to call e.stopPropagation() for the times when I do not need th event to propagate anymore (like almost 100% of the times), or will doing so actually incur ...
1
vote
1answer
235 views
ASP.NET composite control doesn't bubble event but template does
I am developing a composite control for an ASP.NET application and just by chance initially developed the control to use an ITemplate to create its child controls. There will be a series of buttons ...
1
vote
2answers
639 views
How to bubble events in Silverlight usercontrols?
I am trying to bubble an event from a child usercontrol to its parent.
The child usercontrol is a button inside a grid:
<UserControl>
<Grid>
<Button Click="Button_Click" ...
1
vote
1answer
279 views
GWT : two DOM events on same div, priority and how to deactivate the second event when the first is called?
I've got a Widget which have two Dom mouseDown handlers :
First, I code with GWT but I think the problem is probably Javascript related.
One of this handler registration is defined in a class named ...
1
vote
1answer
287 views
Bubbling events in WPF? Simple Question
This is probably a really easy fix, but I am inexperienced in working with events so I am just going to ask it.
I have a ListBox with ListBoxItems in it. These ListBoxItems will be binded to a data ...
1
vote
2answers
108 views
Event Bubbling and jQuery
I'm trying to capture a click event that bubbles up the DOM to the body, check to see what the selector of the click element is, and then based on that, choose to call a function.
Something like ...
1
vote
4answers
355 views
how do stop events bubbling in Jquery?
How do I stop custom event bubbling in jquery?
for example I have this code:
$('.myclass').bind('amodaldestroy', function(){
....does something.....
})
How do I only allow this to be triggered ...
1
vote
1answer
280 views
jquery - plugin bubble click event
i'm trying to create my own jquery plugin but am having problems bubbling the event to the page (I think this is the problem).
I am calling the plugin like so.
$('div.testdiv1').bpcolourpicker
({
...
1
vote
1answer
111 views
Closing form on “blur” — Is there a better way?
So, i'm trying to close a form on blur, e.g. Facebook comments. The issue is, I had a:
$(window).click(function(){ $('.comment_form').hide(); });
$('.comment_form').click(function(){ return false; ...
1
vote
0answers
107 views
Bubbling an event triggered by disabled element
The question is: should the disabled element produce an event that will be triggered on its parent(s)?
<div id="test">
<button disabled="disabled">Click me</button>
</div>
...
1
vote
2answers
71 views
Preventing bubbling after loading?
I've a huge problem.
I'm having a div named "#box" that loads external content after clicking links in it:
$("#box a").click(
function(e)
{
e.preventDefault();
var hash = ...
1
vote
3answers
207 views
Event bubbling for parent of <a>, which returns false from onclick event listener
I try to make a common solution for the following task: onclick event listener for element
<a href="#">Some text</a>
must return false. It can stop page scrolling after click.
...