Top "Events" questions

An event is a way for a class to provide notifications to listeners when a particular thing happens.

Super-simple example of C# observer/observable with delegates

I recently started digging into C# but I can't by my life figure out how delegates work when implementing the …

c# events delegates observer-pattern
CSS3 transition events

Are there any events fired by an element to check wether a css3 transition has started or end?

javascript events css transition css-transitions
How to stop default link click behavior with jQuery

I have a link on a web page. When a user clicks it, a widget on the page should update. …

javascript jquery events click jquery-events
Triggering a checkbox value changed event in DataGridView

I have a grid view that has a check box column, and I want to trigger a drawing event as …

c# winforms events datagridview checkbox
Global Events in Angular

Is there no equivalent to $scope.emit() or $scope.broadcast() in Angular? I know the EventEmitter functionality, but as far …

angular events
How to find out which JavaScript events fired?

I have a select list: <select id="filter"> <option value="Open" selected="selected">Open</option&…

javascript events watir dom-events browser-automation
C# Listbox Item Double Click Event

I have a list box with some items. Is there anyway I can attach a double click event to each …

c# events listbox listboxitem double-click
Android EditText delete(backspace) key event

How can I detect delete (backspace) key event for a editText? I've tried using TextWatcher, but when the editText is …

android events android-edittext key
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?

c# events delegates glossary
Adding event listeners to dynamically added elements using jQuery

So right now, I understand that in order to attach an event listener to a dynamically added element, you have …

jquery events