An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object
321
votes
20answers
329k views
jQuery Event Keypress: Which key was pressed?
With jQuery, how do I find out which key was pressed when I bind to the keypress event?
$('#searchbox input').bind('keypress', function(e) {});
I want to trigger an submit when ENTER is pressed.
...
244
votes
8answers
83k views
How to find event listeners on a DOM node?
I have a page where some event listeners are attached to input boxes and select boxes.
Is there a way to find out which event listeners are observing a particular DOM node and for what event?
Events ...
123
votes
12answers
37k views
C# Events and Thread Safety
I frequently hear/read the following advice:
Always make a copy of an event before you check it for null and fire it. This will eliminate a potential problem with threading where the event becomes ...
107
votes
4answers
52k views
Custom events in jQuery?
I'm looking for some input on how to implement custom eventhandling in jquery the best way. I know how to hook up events from the dom elements like 'click' etc, but I'm building a tiny javascript ...
106
votes
9answers
93k views
Event binding on dynamically created elements?
I have a bit of code where I am looping though all the select boxes on a page and binding a .hover event to them to do a bit of twiddling with their width on mouseon/off.
This happens on page ready, ...
87
votes
7answers
57k views
Programmatically add custom event in the iPhone Calendar
Is there any way to add iCal event to the iPhone Calendar from the custom App?
82
votes
6answers
15k views
What's the difference between `on` and `live` or `bind`?
In jQuery v1.7 a new method, on was added. From the documentation:
‘The .on() method attaches event handlers to the currently selected set of elements in the jQuery object. As of jQuery 1.7, the ...
81
votes
6answers
45k views
jQuery find events handlers registered with an object
I need to find which event handlers are registered over an object.
For example:
$("#el").click(function() {...});
$("#el").mouseover(function() {...});
$("#el") has click and mouseover registered.
...
74
votes
8answers
35k views
How to order events bound with jQuery
Lets say I have a web app which has a page that may contain 4 script blocks - the script I write may be found in one of those blocks, but I do not know which one, that is handled by the controller.
...
67
votes
6answers
60k views
event.preventDefault() function not working in IE.
Following is my javascript(mootools) code:
$('orderNowForm').addEvent('submit', function(event){
event.preventDefault();
allFilled = false;
$$(".required").each(function(inp){
if ...
65
votes
6answers
30k views
How can I clear event subscriptions in C#?
Take the following C# class:
c1 {
event EventHandler someEvent;
}
If there are a lot of subscriptions to c1's someEvent event and I want to clear them all, what is the best way to achieve this? ...
64
votes
9answers
9k views
TextBox.TextChanged event firing twice on Windows Phone 7 emulator
I have a very simple test app just to play around with Windows Phone 7. I've just added a TextBox and a TextBlock to the standard UI template. The only custom code is the following:
public partial ...
62
votes
12answers
4k views
Event Signature in .NET — Using a Strong Typed 'Sender'?
I fully realize that what I am proposing does not follow the .NET guidelines, and, therefore, is probably a poor idea for this reason alone. However, I would like to consider this from two possible ...
60
votes
6answers
52k views
Catch browser's “zoom” event in JavaScript
Is it possible to detect, using JavaScript, when the user changes the zoom in a page?
I simply want to catch a "zoom" event and respond to it (similar to window.onresize event).
Thanks.
58
votes
6answers
54k views
Definitive way to trigger keypress events with jQuery
I've read all the answers on to this questions and none of the solutions seem to work.
Also, I am getting the vibe that triggering keypress with special characters does not work at all. Can someone ...
57
votes
7answers
57k views
jQuery equivalent of JavaScript's addEventListener method
I'm trying to find the jQuery equivalent of this JavaScript method call:
document.addEventListener('click', select_element, true);
I've gotten as far as:
$(document).click(select_element);
but ...
56
votes
5answers
51k views
Delay jquery hover event?
I would like to delay a hover event in jquery. I am reading from a file when user hovers over a link or label. I don't want this event to occur immediately in case the user is just moving the mouse ...
56
votes
1answer
15k views
C#: How to remove a lambda event handler [duplicate]
Possible Duplicates:
Unsubscribe anonymous method in C#
How do I Unregister ‘anonymous’ event handler
I recently discovered that I can use lambdas to create simple event ...
56
votes
12answers
78k views
Javascript callback when IFRAME is finished loading?
I need to execute a callback when an IFRAME has finished loading. I have no control over the content in the IFRAME, so I can't fire the callback from there.
This IFRAME is programmaticly created, and ...
54
votes
14answers
42k views
How to prevent ENTER keypress to submit a web form?
How do you prevent an ENTER key press from submitting a form in a web-based application? I need a detailed answer.
54
votes
3answers
11k views
Unit testing that an event is raised in C#
I have some code that raises PropertyChanged events and I would like to be able to unit test that the events are being raised correctly.
The code that is raising the events is like
public class ...
53
votes
8answers
95k views
Can I call jquery click() to follow an <a> link if I haven't bound an event handler to it with bind or click already?
I have a timer in my javascript which needs to emulate clicking a link to go to another page once the time elapses. To do this I'm using jquery's click() function. I have used $().trigger() and ...
52
votes
10answers
94k views
Android Spinner: Get the selected item change event
How can you set the event listerner for a Spinner when the selected item changes?
Basically what I am trying to do is something similar to this:
spinner1.onSelectionChange = handleSelectionChange;
...
52
votes
9answers
16k views
jQuery - Trigger event when an element is removed from the DOM
I'm trying to figure out how to execute some js code when an element is removed from the page:
jQuery('#some-element').remove(); // remove some element from the page
/* need to figure out how to ...
51
votes
6answers
78k views
How to stop event propagation with inline onclick attribute?
Consider the following:
<div onclick="alert('you clicked the header')" class="header">
<span onclick="alert('you clicked inside the header');">something inside the header</span>
...
50
votes
4answers
30k views
CSS3 transition events
Are there any events fired by an element to check wether a css3 transition has started or end?
50
votes
4answers
49k views
How to trigger event in JavaScript
I have attached an event to a text box using addEventListener. It works fine. My problem arouse when I wanted to trigger the event programmatically from another function.
How can I do it?
49
votes
5answers
2k views
Events aren't fields - I don't get it
In C# in depth (an excellent book thus far), Skeet explains events aren't fields. I read this section many times and I don't understand why the distinction makes any difference.
I am one of those ...
47
votes
8answers
31k views
Difference between events and delegates and its respective applications
I don't see advantages of using events over delegates, other than being syntactical sugar. Perhaps I am misunderstanding, but it seems that event is just a placeholder for delegate.
Would you explain ...
46
votes
6answers
47k views
Understanding events and event handlers in C#
I understand the purpose of events, especially within the context of creating user interfaces. I think this is the prototype for creating an event:
public void EventName(object sender, EventArgs e);
...
45
votes
6answers
9k views
What are the differences between delegates and events?
What are the differences between delegates and an events? Don't both hold references to functions that can be executed?
45
votes
7answers
44k views
jQuery Change event on an <input> element - any way to retain previous value?
I've been searching around this morning and I'm not finding any simple solutions... basically, I want to capture a change in an input element, but also know the previous value.
Here's a change event ...
44
votes
4answers
37k views
How to add a touch event to a UIView?
How do I add a touch event to a UIView?
I try:
UIView *headerView = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, tableView.bounds.size.width, nextY)] autorelease];
[headerView addTarget:self ...
44
votes
9answers
38k 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 ...
44
votes
2answers
20k views
What's the difference between event.stopPropagation and event.preventDefault?
They seem to be doing the same thing... Is one modern and one old? Or are they supported by different browsers?
When I handle events myself (without framework) I just always check for both and ...
44
votes
8answers
19k views
Event system in Python
What event system for Python do you use? I'm already aware of pydispatcher, but I was wondering what else can be found, or is commonly used?
I'm not interested in event managers that are part of ...
44
votes
4answers
17k views
What is the difference between the mouseover and mouseenter events?
I have always used the mouseover event, but while reading the jquery documentation I found mouseenter. They seem to function exactly the same. Is there a difference between the two, and if so when ...
43
votes
9answers
36k views
jQuery callback on image load (even when the image is cached)
I want to do:
$("img").bind('load', function() {
// do stuff
});
But the load event doesn't fire when the image is loaded from cache. The jQuery docs suggest a plugin to fix this, but it ...
43
votes
11answers
5k views
Is there a downside to adding an anonymous empty delegate on event declaration?
I have seen a few mentions of this idiom (including on SO):
// Deliberately empty subscriber
public event EventHandler AskQuestion = delegate {};
The upside is clear - it avoids the need to check ...
43
votes
3answers
2k views
“cannot implement interface member” error when interface and concrete are in different projects
This compiles:
public interface IMyInterface
{
event Action<dynamic> OnSomeEvent;
}
class MyInterface : IMyInterface
{
public event Action<dynamic> OnSomeEvent;
}
But when i ...
42
votes
12answers
5k views
In a C# event handler, why must the “sender” parameter be an object?
According to http://msdn.microsoft.com/en-us/library/h0eyck3s%28VS.71%29.aspx the sender parameter in a C# event handler "is always of type object, even if it is possible to use a more specific type."
...
42
votes
10answers
35k views
Cleanest Way to Invoke Cross-Thread Events
I find that the .NET event model is such that I'll often be raising an event on one thread and listening for it on another thread. I was wondering what the cleanest way to marshal an event from a ...
41
votes
5answers
41k views
How do I stop a page from unloading (navigating away) in JS?
Does anyone know how to stop a page from reloading or navigating away?
jQuery(function($) {
/* global on unload notification */
warning = true;
if(warning) {
...
41
votes
6answers
8k views
How do you detect the clearing of a “search” HTML5 input?
In HTML5, the search input type appears with a little X on the right that will clear the textbox (at least in Chrome, maybe others). Is there a way to detect when this X is clicked in javascript or ...
40
votes
5answers
15k views
40
votes
6answers
23k views
Howto capture the 'virtual keyboard show/hide' event in Android?
I would like to alter the layout based on whether the virtual keyboard is shown or not. I've searched the API and various blogs but can't seem to find anything useful.
Is it possible?
Thanks!
40
votes
9answers
4k views
Is a non-blocking, single-threaded, asynchronous web server (like Node.js) possible in .NET?
I was looking at this question, looking for a way to create a single-threaded, event-based nonblocking asynchronous web server in .NET.
This answer looked promising at first, by claiming that the ...
40
votes
5answers
1k views
Preferred way of modifying elements that have yet to be created (besides events)
There are a lot of questions about binding future manipulations to non-existent elements that all end up answered with live/delegate. I am wondering how to run an arbitrary callback (to add a class or ...
39
votes
3answers
14k views
C#: Raising an inherited event
I have a base class that contains the following events:
public event EventHandler Loading;
public event EventHandler Finished;
In a class that inherits from this base class I try to raise the ...
39
votes
16answers
27k views
When onblur occurs, how can I find out which element focus went *to*?
Suppose I attach an onblur function to an html input box like this:
<input id="myInput" onblur="function() { ... }"></input>
Is there a way to get the ID of the element which caused the ...