• Det är Söndagen den 26:e April 2026, vecka 17, idag har Teresia och Terese namnsdag

    Stäng

  • 5 dagar kvar tills Valborg, Första Maj

    Stäng

Event

Muspekare Muspekare
  • oninput

Body and Frameset Events

  • onload
  • onunload

Form Events

  • onblur
  • onchange
  • onfocus
  • onreset
  • onselect
  • onsubmit

Image Events

  • onabort

Keyboard Events

  • onkeydown
  • onkeypress
  • onkeyup

Mouse Events

  • onclick
  • ondblclick
  • onmousedown
  • onmousemove
  • onmouseout
  • onmouseover
  • onmouseup

Touch Events

  • ongesturestart
  • ongesturechange
  • ongestureend

  • ontouchstart
  • ontouchmove
  • ontouchend
  • ontouchcancel
Pointer

Skapa ett helt eget event med Javascript

var e = document.createEvent('HTMLEvents'); e.initEvent(type, false, true); el.dispatchEvent(e);

Creating and triggering events

Creating custom events

var event = new Event('build'); // Listen for the event. elem.addEventListener('build', function (e) { ... }, false); // Dispatch the event. elem.dispatchEvent(event);

MutationObserver

// Select the node that will be observed for mutations var targetNode = document.getElementById('some-id'); // Options for the observer (which mutations to observe) var config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed var callback = function(mutationsList, observer) { for(var mutation of mutationsList) { if (mutation.type == 'childList') { console.log('A child node has been added or removed.'); } else if (mutation.type == 'attributes') { console.log('The ' + mutation.attributeName + ' attribute was modified.'); } } }; // Create an observer instance linked to the callback function var observer = new MutationObserver(callback); // Start observing the target node for configured mutations observer.observe(targetNode, config); // Later, you can stop observing observer.disconnect(); Logotyp för JS - JavaScript

Programmeringsspråk

Logotyp för Evenemang Logotyp för Evenemang

Externa länkar

Musikvideo för låten Take on me av A-ha

Låt

  • Take on me
Logotyp för ON RUNNING Logotyp för ON RUNNING Logotyp för ON THAT ASS Logotyp för GALEJ Logotyp för Great Event

Kuriosa

Logotyp för Azure Event Hub Logotyp för Apache Kafka