The concept of parent element handling the events that are originated by child element

learn more… | top users | synonyms

4
votes
2answers
62 views

Why does jQuery fail to match “:not(#menu *)”

I've homerolled a Javascript based nav bar (I want it to be click, not hover for mobile friendliness). I've tried to make the HTML, CSS, and Javascript as simple as possible. I put a listener on the ...
0
votes
0answers
12 views

Touchy JS Wheel Menu Event Bubble

http://hotstudio.github.io/touchy/examples/wheel-inertia.html This is a really cool spinning menu that I want to fabricate into a menu... however... I am having issues resolving the event bubble. ...
0
votes
1answer
13 views

Getting the Logical UIElement under the mouse in WPF

It seems that all of the way of retrieving an element under the Mouse relates to Visual Hit testing. Is there some mechanism that I'm missing which would allow me to grab the actual UIElement that ...
0
votes
2answers
68 views

Pros and Cons of using e.stopPropagation() to prevent event bubbling

Many people have explained that e.stopPropagation() prevents event bubbling. However, I'm having a hard time finding why one would want or want to prevent event bubbling in the first place. On my ...
0
votes
2answers
39 views

Is there any reason to use target=“view” or target=“controller” in Ember actions?

I'm playing with actions in Ember and I see that some people use targets that point to their controllers or their views like such: {{action saveNote target="view"} However, I also see that Ember ...
1
vote
0answers
41 views

MainWindow PreviewKeyDown slows TextBox input

I'm using the KeyDown Event in my MainWindow to get key strokes of the up/down key. When typing in a TextBox I get huge delays between key stroke and the character showing up on the screen, because of ...
0
votes
0answers
25 views

Dispatching Custom Event and listening for it somewhere else (Bubbling) in IE

I can't seem to get this to work in JavaScript. I've tried using plain old JavaScript and also JQuery but nothing seems to work. Here's my situation: I have this PopUp "Panel" and in it I have a ...
0
votes
1answer
65 views

Running YouTube video in iOS 6 by clicking JavaScript button

I am creating an iPad app for running YouTube video using IFrame. I referred to many questions regarding YouTube integration in UIWebView and understand that: Autoplay is not possible Apple doesn't ...
1
vote
3answers
35 views

Click event interrupts submit event

Imagine something like this. <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Testing event bubbling</title> <script ...
1
vote
2answers
27 views

Finding the source or a click in Event Bubbling

I have the following code: <div id="buttons"> <button id="btn1">1</button> <button id="btn2">2</button> </div> I attach an event handler to the ...
0
votes
0answers
69 views

JQuery/Javascript Nested Sortable list Stop Propagation

Okay, Here is the problem: I've created a nested sortable list with JQuery. This consists of a (which i refer to as the outside UL)that contains another UL (the internal UL). The outside has a ...
0
votes
0answers
72 views

asp.net event bubbling in repeater does not work

I have a repeater containing a WebUserControl with some simple buttons and a DropDownList with a event on SelectedIndexChanged. I want to bubble out the event and it works if the WebUserControl is not ...
0
votes
4answers
209 views

How to prevent/stop event bubbling/propagation on page load in asp.net

I would like to know if I can prevent the event bubbling / propagation on the page load based on condition like: protected override void OnLoad(EventArgs e) { // If the user press F5 from the ...
2
votes
3answers
36 views

Jquery Mobile Perfomance

Please find 2 set of code blocks below and let me know which one is to follow and why? <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" ...
1
vote
3answers
102 views

Preventing event bubbling (for javascript onclick events)

I am using javascript to interact with a CMS which provides a button for users to add things to their basket. However, I am using the javascript to try and prevent the customer from doing so unless ...
0
votes
0answers
109 views

FancyBox 2 Prevent Bubbling

In FancyBox2 I want to prevent bubbling of a element inside an element. On both elements there is fancybox attached. But if you click on the the inner element the outer element also fired. How can I ...
0
votes
0answers
245 views

Call Parent Page's Method from Dynamic User Control :- WIndows Store App, C# and XAML

I am trying to create a Windows Store App for Business Intelligence using XAML and C#. The application's MainPage.xaml has following controls. Bing Map RadChart1 : Bar Chart RadChart2: Line Chart ...
0
votes
2answers
96 views

how to write an onclick function in order to prevent bubbling

Evening guys, I have an issue where a have a <td> tag and a <p> tag inside of it, both have onclick events, this is a textbook situation of the <p> onclick running the <td> ...
2
votes
1answer
368 views

AngularJS: Preventing 'mouseenter' event triggering on child elements

I'm playing right now with the AngularJS framework and I stumbled upon a problem. I made a directive which is called 'enter'. It triggers functions on 'mouseenter' and 'mouseleave'. I applied it as an ...
0
votes
1answer
55 views

How do I stop the event bubbles in dropdown?

Here is my jsfiddle : http://jsfiddle.net/FAehp/3/ I want to add a even listener to the parent view. But it bubbled by the drop down menus. Any one face this issue? or am I doing wrong?
1
vote
3answers
51 views

JQuery stopPropagation on .live() when handlers already exist [duplicate]

I'm aware that live calls bubble up through the doccument and that is why I'm having issues. Unfortunately I'm using third party libraries that bind event handlers to elements and would like to ...
0
votes
3answers
36 views

JQuery stopPropagation on .live() when handlers already exist and are bound

I'm aware that live calls bubble up through the doccument and that is why I'm having issues. Unfortunately I'm using third party libraries that bind elements and would like to create a case in which ...
0
votes
1answer
188 views

How to prevent a ScrollViewer from handling MouseMove event of a descendant? (Silverlight for Windows Phone)

Consider this: <ScrollViewer> <!-- Several Controls /--> <MyControl MouseMove="myMouseMoveHandler" /> <!-- Several Controls /--> </ScrollViewer> MyControl is a ...
0
votes
1answer
54 views

Have div within a fixed div catch mouse clicks?

I'm using a slightly modified version of this modal window: http://blog.avtex.com/2012/01/26/cross-browser-css-only-modal-box/ One of the modifications I've made is to add onclick="history.back(-1)" ...
1
vote
2answers
197 views

Jquery mouseleave event: how to know towards what element the mouse is going?

I think this is very jquery/javascript ninja question. Basically i have two different divs, and inside the first one i have other elements and at the end of tree i have an ul. The example http: ...
0
votes
0answers
37 views

Scroll “bubbling” or “jumping” when targeting iframe

I am a bit new js but I have scoured the web to find a fix for this with no luck. I have a page with items that I link to a shopping cart in an iframe. When the links are clicked the items are added ...
0
votes
1answer
148 views

jQuery prevent all event bubbling

I'm using jQuery with it's widget factory and using custom events to handle events in my application. This means that all my event binding looks a lot like: //...in the widget factory code ...
-2
votes
3answers
86 views

A way to remove click events for element

I have an element #foo and it has click event on it. Element #foo is in element #bar which also has click event on it. <div id="bar"> <div id="foo" /> </div> When #foo is ...
1
vote
2answers
132 views

Wicket: How to pass model changes to parent components? onModelChanged() doesn't work

I have a component containing a form with many TextFields. The way it should work is that when changed, the value should be persisted immediately (no Save button, all through AJAX). The AJAX calls ...
0
votes
0answers
121 views

jQuery Keyup Event Precedence On Multiple Triggers On Same Page

Sorry for the crummy title. I have a contact form that can pop up on every page. Users can hit Esc to close the form. Works fine. <form id="contactForm" method="post" class="open" style="display: ...
0
votes
1answer
29 views

Use same function as “standard” one and as an event handler

I have a function function foo(event, var1) { // do something... } I am using this function in some event bubbling, but I also need to use as a normal function that's called by me from my code. ...
1
vote
1answer
99 views

drop event or event.dataTransfer.files seem to cause weird mix up in the order of execution

I have trouble understanding the order in which my script is beeing executed i've got the following code in my jQuery drag and drop plugin //... drop : function( event ) { ...
0
votes
6answers
446 views

javascript (jquery): delay execution of event up the 'event bubble order' until ajax call completes

EDIT: in response to comments about executing click event programaticaly on the anchor element, or using, window.open- I cant use these because of the popup blocker. I must allow the original ...
3
votes
1answer
216 views

knockoutjs: prevent event bubbling for elements with no handler

It seems like the binding <event>Bubble: false only works when there's a defined event handler (see Note 4) for <event>. Here's an example fiddle. For elements having native handlers for ...
1
vote
1answer
76 views

Prevent taps from passing through buttons in XAML/WPF

In my project, I have a large container with a handler for taps. Inside this container, I also have a button. My goal is to handle all taps on the background container UNLESS the user clicks on the ...
1
vote
1answer
243 views

JQuery .click() event, very odd behavior in IE 8&9

I've created a video gallery which loads a Youtube video via swfobject, based on the element's data attributes. It functions quite well in all browsers, except IE. The strange behavior I am seeing ...
2
votes
2answers
81 views

jQuery - Get first item from bubbling. Get bubble order or id when bubbling

My last question was here: Get last clicked item id and there was good answers but i still have a problem. I have function like this: $(document).ready(function () { $("*").click(function () ...
0
votes
2answers
83 views

Listen for changes against an Object In an array without nesting event listeners

(disclaimer: this question is much simpler than the title suggests!) I have a re-occuring problem in my program architecture with listening to changes against a model. I have set-up some ...
1
vote
1answer
85 views

How to bubble an event up multiple levels?

I'm struggling to bubble an event correctly. I have a master page with a user control, and a page that is a child of the master page. The user control and the page share common data, so when the ...
2
votes
2answers
121 views

What is the default event order in JavaScript? Top-down or Bottom-up? [duplicate]

Possible Duplicate: What is event bubbling and capturing I just learnt that in JS we have two event types: Capture and Bubble. Bubble can be used for avoiding the need of attaching the ...
0
votes
2answers
285 views

preventDefault() for keypress cancels change event

In the code snippet below, I'm trying to prevent the user from entering new lines into a <textarea> by using preventDefault(). Instead of entering new lines, I want the enter key to trigger the ...
1
vote
2answers
318 views

How to handle event bubbling?

I am working on a small backbone application. I currently got the problem that I want to show a profile of a specific item. This showProfile event is triggered when I click on list item. Not the ...
2
votes
1answer
149 views

how can i stop event bubbling without stopPropagation method

there is some html code like this: <ul> <li id='root' class='tree-node'> root <ul> <li class='tree-node' id='node1'>node1</li> <li ...
0
votes
2answers
46 views

Capture event in a function to stop it from bubling

Note: I now about event bubling and how to stop it. Code ==> function foo ( bar ){ //do something } In the above function,i want to capture the event so I can stop it from bubling out. What i've ...
0
votes
0answers
99 views

Unwanted focus or click event called in gallary view layout android | Event Bubbling

I'm using customized Gallery views for my app. here is the screen shot of it: when I fling this view to show next one, the buttons at the bottom get focused and there clicked drawble gets ...
2
votes
1answer
209 views

How does WPF TextBox “knows” that a KeyDown event was handled

I noticed that when a window is handling the KeyDown event raised by a text box in it and set the event Handled flag to true, the text box ignores the pressed key and doesn’t add it to its content. ...
1
vote
1answer
114 views

Stop bubbling events in WinForms

I have a (custom) MyTextbox. MyTextbox in on (custom) MyPanel, and the panel is on the MyForm. When the user edits text in MyTextbox and press, say "DEL" the MyForm recieves the _KeyDown event... ...
2
votes
1answer
178 views

Knowing if a previous handler for an event returned false. defaultPrevented in IE < 9?

I've put a global modal "Loading, please wait" <div> in an application. It is showing every time an <a> or <input type="button"> is clicked. This is achieved by assigning the ...
3
votes
3answers
141 views

Event bubbling/capturing - where does it start/end?

I understand that an event has two modes -- bubbling and capturing. When an event is set to bubble, does Javascript checks up to "document" ? When an event is set to capture, does Javascript always ...
22
votes
3answers
283 views

Mastering event bubbling

Lets say we have a HTML structure like this <div id="container"> <div id="nested"> <span id="someElement"></span> </div> </div> ...and our goal ...

1 2 3 4 5