The concept of parent element handling the events that are originated by child element
0
votes
1answer
24 views
JQUERY and window resize
this may seem a simple question regarding Jquery and twitter bootstrap
I have a twitter bootstrap, fluid layout, when the windows resizes, the fluid rows obviously resize, but I notice these ...
0
votes
1answer
45 views
Why does javaScript / jQuery seem to ignore my IF statement on event bubbling?
I am sure it is just me not understanding JavaScript fundamentals properly. But could someone point out as why I have the impression that my if statement evaluates to true, on event bubbling, even ...
1
vote
1answer
54 views
Remove event listener with d3js not working
I have an svg structure where there are some shapes inside. I want to fire an event when a shape is clicked and another one when is clicked over the svg. The problem is the SVG event is always fired.
...
0
votes
0answers
47 views
Backbone.js on(document).on('click') to deselect an element. Event bubbling up
I am making a Backbone.js powered app, was trying different approach to detect clicks on element vs document and this is what I came up with:
initialize: function() {
$(document).on('click', ...
-2
votes
2answers
41 views
Click on absolute positioned image does not bubble up to underlying image [closed]
I have an absolute positioned image on top of another image.
Now when I bind a click event to the image in the background and click the overlaying image the click event does not bubble up to the ...
1
vote
1answer
115 views
c# Why does my page / user control only support one event handler
I have 2 events that I want to fire from a user control back to it's parent.
"UserSelected" and "NoUsersSelected"
One fires when a user is selected and the other fires when all the users have been ...
4
votes
2answers
73 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
2answers
31 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
95 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
50 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
68 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
38 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
116 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
46 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
40 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
122 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
125 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
296 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
38 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
139 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
126 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
257 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
112 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
491 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
78 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
73 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
46 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
234 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
67 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
289 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
42 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
195 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
99 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
150 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 ...
1
vote
0answers
146 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
30 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
146 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
500 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
278 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
91 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
402 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
90 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
105 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
95 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
148 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
345 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
342 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
171 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
51 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
104 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 ...





