An event is a way for a class to provide notifications to clients of that class when some interesting thing happens to an object

learn more… | top users | synonyms (1)

320
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. ...
242
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 ...
42
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 ...
105
votes
9answers
92k 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, ...
32
votes
9answers
91k views

Browser window close event

I want to capture the browser window/tab close event. I have tried the following with jQuery: jQuery(window).bind( "beforeunload", function() { return confirm("Do you really want ...
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.
49
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?
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 ...
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?
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 ...
81
votes
6answers
44k 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. ...
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> ...
27
votes
3answers
11k views

How to find out which JavaScript events fired?

I have a select list: <select id="filter"> <option value="Open" selected="selected">Open</option> <option value="Closed">Closed</option> </select> When I ...
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 ...
32
votes
6answers
54k views

How to recognize touch events using jQuery in Safari for iPad? Is it possible?

Is it possible to recognize touch events on the iPad's Safari browser using jQuery? I used mouseOver and mouseOut events in a web application. Are there any similar events for the iPad's Safari ...
37
votes
8answers
30k views

In jQuery, how to attach events to dynamic html elements?

Suppose I have some jQuery code that attaches an event handler to all elements with class "myclass". For example: $(function(){ $(".myclass").click( function() { // do something }); ...
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 ...
28
votes
5answers
21k views

Capture console exit C#

I have a console application that contains quite a lot of threads. There are threads that monitor certain conditions and terminate the program if they are true. This termination can happen at any ...
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 ...
45
votes
6answers
8k 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?
37
votes
4answers
28k views

Trigger an event with Prototype

Does anybody know of a method to trigger an event in Prototype, as you can with jQuery's trigger function? I have bound an event listener using the observe method, but I would also like to be able to ...
38
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 ...
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 ...
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 ...
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 ...
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 ...
4
votes
2answers
6k views

Barcode Scanner implementation on Java

Good sirs, I have a question. The school Java project I am currently working on requires me to have a USB Barcode Scanner as an external input to be connected to my laptop. I haven't actually bought ...
40
votes
5answers
15k views

Clipboard event C#

Is there a clipboard changed or updated event that i can access through C#?
9
votes
2answers
19k views

Global keyboard capture in C# application

I want to capture a keyboard shortcut in my application and trigger a dialog to appear if the user presses a keyboard combo even outside of the app. Similar to Google Desktop Search's Ctrl, Ctrl to ...
18
votes
3answers
10k views

firing event on DOM attribute change

is there any way to trigger event (may be custom) on attribute change? Let's say, when IMG src is changed or DIV's innerHtml?
2
votes
2answers
887 views

Get Edited TreeNode from a CellEditorListener

Earlier I asked how to fire an event when a TreeNode was renamed (here). My question was answered, but I ran into another problem. I need to access the TreeNode that is being edited in the ...
45
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); ...
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?
37
votes
7answers
32k views

JavaScript Callback Scope

I'm having some trouble with plain old JavaScript (no frameworks) in referencing my object in a callback function. function foo(id) { this.dom = document.getElementById(id); this.bar = 5; ...
41
votes
5answers
40k 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) { ...
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 ...
20
votes
8answers
15k views

Event Aggregator Implementation Sample / Best Practices

I'm looking for samples / best practices of Event Aggregator implementation. Anyone help ?
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!
29
votes
5answers
13k views

jQuery .live() vs .on() method for adding a click event after loading dynamic html

I am using jQuery v.1.7.1 where the .live() method is apparently deprecated. The problem I am having is that when dynamically loading html into an element using: $('#parent').load("http://..."); ...
29
votes
3answers
15k views

JavaScript / jQuery: Test if window has focus

How do you test if the browser has focus?
52
votes
10answers
93k 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; ...
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 ...
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.
19
votes
2answers
2k views

Is it bad to not unregister event handlers?

If I have an application with only a few event handlers registered (and the objects using the events are not disposed until the application is closed), do I really need to worry about unregistering ...
14
votes
9answers
15k views

jQuery - Click event doesn't work on dynamically generated elements

<html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function() { ...
27
votes
4answers
7k views

Weak event handler model for use with lambdas

OK, so this is more of an answer than a question, but after asking this question, and pulling together the various bits from Dustin Campbell, Egor, and also one last tip from the ...
24
votes
7answers
6k views

How do I Unregister 'anonymous' event handler

Say if I listen for an event: Subject.NewEvent += delegate(object sender, NewEventArgs e) { //some code }); Now how do I un-register this event? Or just allow the memory to leak?
25
votes
9answers
15k views

Preventing click event with jQuery drag and drop

I have an elements on page that are draggabe with jQuery. These elements have click event wich navigates to another page (ordinary links for example). What is the best way to prevent click from ...
7
votes
2answers
5k views

.NET Events for Process executable start

Is there any way to register for an event that fires when an executable of a particular filename starts? I know it's easy enough to get an event when a process exits, by getting the process handle ...

1 2 3 4 5 38