Skip to content

Instantly share code, notes, and snippets.

View Quaese's full-sized avatar

Quaese

  • Javascript and Frontend Developer
  • Jena (Germany, Thuringia)
View GitHub Profile
@Quaese
Quaese / live-event.js
Last active December 11, 2022 16:07
Live Event for Javascript (Vanilla JS, native JS)
/*
* Get nearest parent element matching selector.
*/
const closest = (function() {
const el = HTMLElement.prototype,
matches =
el.matches ||
el.webkitMatchesSelector ||
el.mozMatchesSelector ||
el.msMatchesSelector;