Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

167
votes
6answers
34k views

JavaScript: event.preventDefault() vs return false

When I want to prevent other event handlers from executing after certain event is fired I can do one of those (jQuery examples, but this will work in JS in general): #1 event.preventDefault() ...
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 ...
8
votes
6answers
4k 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 ...
3
votes
1answer
132 views

jeditable propagation

i'm using jeditable and I have nested elements all binded to jeditable. Problem is when I click on a nested element the click event gets triggered on the top most parent. How can I avoid this ? ...
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
2answers
1k views

Propagate custom QEvent to parent widget in Qt/PyQt

Fist, apologies for the length of the question. I am trying to propagate custom Qt event from child widgets to a top parent widget in order to trigger some action based on event type instead of ...
3
votes
3answers
4k 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 ...
2
votes
2answers
43 views

jquery - unwanted propagation effect

I have a live listener on a class which adds some content. This is somehow calling this listener repeatedly. How can I turn off propagatio in this case? SomeContent = "<p>Some ...
2
votes
2answers
152 views

Javascript: How to continue event propagation after cancelling?

When a user clicks a certain link I would like to present them with a confirmation dialog. If they click "Yes" I would like to continue the original navigation. One catch: my confirmation dialog is ...
2
votes
1answer
130 views

Unbind/bind vs. delegate in jQuery: Which is the best solution?

I have jQuery code that handles unbinding and binding event handlers to elements that are dynamically added to the page. The code has a wrapper function that unbinds existing handlers from elements ...
2
votes
1answer
468 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 ...
2
votes
1answer
316 views

One click handler for multiple buttons and stop propagating event up to parent?

I'm generating a bunch of "li" items as a result of an ajax call. They look like: <li> <p>Hello result 1</p> <button>remove</button> </li> <li> ...
1
vote
2answers
56 views

stop propagation jquery

I have this code, but when I clone an element, then the action is also cloned. What i want is just individual actions for each element.You can see the problem in demo <script ...
1
vote
2answers
183 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
1answer
141 views

Use jQuery to hide DIV when click outside it, but allow propagation of events

I've read a lot of the other questions involving how to close a div when you click outside of it, but I have a compounded problem in that I have other elements that are bound with .live() What I want ...
1
vote
2answers
76 views

jquery function not working in IE7 only

I have the following jquery code: $(function() { $('.sliding-buttons').click(slidingContent); }); function slidingContent(e) { var boxID = $(this).attr('id'), boxName = ...
1
vote
1answer
71 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
280 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
147 views

jQuery stop click event from bubbling when using $.get()

I have assigned a click event to a button, which retrieves a different HTML snippet and injects it into a DIV element using the .html(string) method. $('#btnClose').click(function(){ ...
1
vote
2answers
68 views

Propagation of events in a collection based project

I have a collection-based project in .NET 4. What I mean is that, I have a master collection, call it "System", which is made up of frames, which are each made up of cards, which are in turn made up ...
1
vote
2answers
625 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 ...
1
vote
1answer
192 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
1answer
32 views

Problems with using shortcuts in Vaadin

I have some problems with shortcuts in Table. I have to customize some keys: delete - for removing the rows and enter to make table editable/uneditable, up/down arrows to switch mode of table from ...
0
votes
2answers
55 views

How to disable TAB key in mozila firefox?

I want to disable the tab key in my HTML form. I found following JavaScript code to disable tab, but it doesn't work in Firefox (working in chrome and IE). <script type="text/javascript"> ...
0
votes
0answers
68 views

stop event from bubbling up the DOM

I have an event handler that is being fired on a container document, propagating it to a li-Element down inside itself. For some reason, when I press return, the event also fires for a link a bit ...
0
votes
2answers
205 views

Event Bubbling, and Stop Propagation

What is the difference between event.bubbles to false for any event, And Setting event.stopPropagaion() or stopImmidiatePropagation() while handling event? Im using flex4 with as3.
0
votes
1answer
185 views

jQuery autocomplete item click and event bubbling

How can I get the link click to trigger a select? EDIT: Im refering to why doesnt the line $("a:contains('item2')").click(); trigger a autocomplete menu select? <!doctype html> <head> ...
0
votes
1answer
60 views

Javascript: stopPropagation only works the first time?

My button is only being 'clicked' the first time it is clicked. Every time after, the click event is immediately propagated to the parent's onclick. Here is the button's onclick: $('.clickable ...
0
votes
1answer
94 views

Event Propagation and Multiple Event Handlers

Okay, I'm confused. I've got a global click event handler on document. On the page I have a few links. Each link is handled by the same click event handler that, among other things, prevents the event ...
0
votes
1answer
223 views

IE event propagation problem jQuery autocomplete/jScrollPane

I have an text input field which uses ajax autocompletion. The results are displayed in a jScrollPane panel with a vertical scroll bar. I'm experiencing an IE specific problem where the blur event of ...
0
votes
1answer
151 views

IE8 - enter trigger button click

I have the following code snippet. $("#days").keypress(function(e){ if(e.keyCode == 13){ self.validateNightModalForm(); } }); basically, it checks for enter then invoke a ...
0
votes
1answer
158 views

AS3: Custom event propagation

I'm trying to put together a projector of a sequence of externally loaded swfs and my general question will be as short as it can be. If an external swf loaded into ctrl (an instance of MovieClip ...
0
votes
2answers
229 views

problem with event propagation in FireFox

I'm using the following code to prevent event propagation: function mapSlider(e) { if ($('.slideme').hasClass('open')) { $('.slideme').animate({left:0,},'slow').removeClass('open'); ...
0
votes
2answers
178 views

Event propagation and ajax post

I have the following code: <div id="parentDiv"> <a href="someurl"> ... </a> </div> HTML inside the div comes from the external source and I don't know it's structure and ...
0
votes
0answers
288 views

jQuery hotkeys: prevent IE from running its own shortcuts, like Alt+H

Using jQuery hotkeys, I try to bind shortcuts like Alt + H, Alt + C to some specific actions in my site. The event propagation stops (as it should) in all browsers but IE. First of all, is it possible ...
0
votes
3answers
403 views

jQuery: prevent click queue

$("#right").live("click", function(event) { $(".image_scroll").animate({"left": "+=300px"}, "slow"); }); I need the click to basically not register until the animation is done. I've tried using ...
0
votes
1answer
400 views

How to disable some element reaction to any mouse event without interrupting underlaying element events in jQuery?

I'm trying to make a simple pop-up <div> that's designed to show mouse coordinates while a user is dragging a mouse pointer. This pop-up appears at the bottom on the right to the mouse pointer. ...
0
votes
1answer
209 views

jQuery : give preference to inner click

I have a big div with some links inside, I'd like to have the big div clickable AND links inside too, I did this : html : <div class="clickable"> some text... <a href="myurl1">Link ...
0
votes
1answer
238 views

Javascript Event Bubbling Not Working As Expected

Having a nightmare trying to figure out event Bubbling.. Full test case: <html> <head> <script type="text/javascript"> function $(ob) { return document.getElementById(ob) } ...
0
votes
2answers
250 views

Reassigning the click event from click (using jQuery)

I'm having some trouble with this javascript (using jQuery): $(a).click(function(){ alert('hi') this.unbind.click(function(){ doSomethingElse(this); }) }) When a is clicked, it is ...
0
votes
2answers
399 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 ...