Javascript Tutorial | Procedur obsługi zdarzeń w JavaScript


Post a Comment:





Showing 0 Comments:
Be the first to comment!

External ressources related to Javascript Tutorial | Event Handlers in Javascript

EventTarget.addEventListener() - Web APIs | MDN
https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener

If an event handler (for example, onclick) is specified on an element in the HTML source, the JavaScript code in the attribute value is effectively wrapped in a handler function that binds the value of this in a manner consistent with the addEventListener

Window - Web APIs | MDN
https://developer.mozilla.org/en-US/docs/Web/API/Window

A global variable, window, representing the window in which the script is running, is exposed to JavaScript code. The Window interface is home to a variety of functions, namespaces, objects, and constructors which are not necessarily directly associated w

this - JavaScript | MDN
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/this

A function's this keyword behaves a little differently in JavaScript compared to other languages. It also has some differences between strict mode and non-strict mode. In most cases, the value of this is determined by how a function is called (runtime