Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

js events

Events:

Mouse:
onclick
The event occurs when the user clicks on an element
oncontextmenu
User right-clicks on an element to open a context menu
ondblclick
The user double-clicks on an element
onmousedown
User presses a mouse button over an element
onmouseenter
The pointer moves onto an element
onmouseleave
Pointer moves out of an element
onmousemove
The pointer is moving while it is over an element
onmouseover
When the pointer is moved onto an element or one of its children
onmouseout
User moves the mouse pointer out of an element or one of its children
onmouseup
The user releases a mouse button while over an element

Keyboard:
onkeydown
When the user is pressing a key down
onkeypress
The moment the user starts pressing a key
onkeyup
The user releases a key

Frame:
onabort
The loading of a media is aborted
onbeforeunload
Event occurs before the document is about to be unloaded
onerror
An error occurs while loading an external file
onhashchange
There have been changes to the anchor part of a URL
onload
When an object has loaded
onpagehide
The user navigates away from a webpage
onpageshow
When the user navigates to a webpage
onresize
The document view is resized
onscroll
An element’s scrollbar is being scrolled
onunload
Event occurs when a page has unloaded

Form:
onblur
When an element loses focus
onchange
The content of a form element changes (for <input>, <select>and <textarea>)
onfocus
An element gets focus
onfocusin
When an element is about to get focus
onfocusout
The element is about to lose focus
oninput
User input on an element
oninvalid
An element is invalid
onreset
A form is reset
onsearch
The user writes something in a search field (for <input="search">)
onselect
The user selects some text (for <input> and <textarea>)
onsubmit
A form is submitted

Drag:
ondrag
An element is dragged
ondragend
The user has finished dragging the element
ondragenter
The dragged element enters a drop target
ondragleave
A dragged element leaves the drop target
ondragover
The dragged element is on top of the drop target
ondragstart
User starts to drag an element
ondrop
Dragged element is dropped on the drop target

Clipboard:
oncopy
User copies the content of an element
oncut
The user cuts an element’s content
onpaste
A user pastes content in an element

Media:
onabort
Media loading is aborted
oncanplay
The browser can start playing media (e.g. a file has buffered enough)
oncanplaythrough
When browser can play through media without stopping
ondurationchange
The duration of the media changes
onended
The media has reached its end
onerror
Happens when an error occurs while loading an external file
onloadeddata
Media data is loaded
onloadedmetadata
Meta Metadata (like dimensions and duration) are loaded
onloadstart
Browser starts looking for specified media
onpause
Media is paused either by the user or automatically
onplay
The media has been started or is no longer paused
onplaying
Media is playing after having been paused or stopped for buffering
onprogress
Browser is in the process of downloading the media
onratechange
The playing speed of the media changes
onseeked
User is finished moving/skipping to a new position in the media
onseeking
The user starts moving/skipping
onstalled
The browser is trying to load the media but it is not available
onsuspend
Browser is intentionally not loading media
ontimeupdate
The playing position has changed (e.g. because of fast forward)
onvolumechange
Media volume has changed (including mute)
onwaiting
Media paused but expected to resume (for example, buffering)
Animation
animationend
A CSS animation is complete
animationiteration
CSS animation is repeated
animationstart
CSS animation has started

Other:
transitionend
Fired when a CSS transition has completed
onmessage
A message is received through the event source
onoffline
Browser starts to work offline
ononline
The browser starts to work online
onpopstate
When the window’s history changes
onshow
A <menu> element is shown as a context menu
onstorage
A Web Storage area is updated
ontoggle
The user opens or closes the <details> element
onwheel
Mouse wheel rolls up or down over an element
ontouchcancel
Screen touch is interrupted
ontouchend
User finger is removed from a touch screen
ontouchmove
A finger is dragged across the screen
ontouchstart
Finger is placed on touch screen
Comment

javascript events

document.querySelector('html').onclick = function() {
    alert('Ouch! Stop poking me!');
}
Comment

events in javascript

Events are things browser or user do it like click,scroll,press keyboard.
const button =document.querySelector('#submit)
 //Click,Scroll,Resizing the browser
 button.addEventListener('click', function(){
console.log('New Item added'); //when button with id #submit click it console.log
})
Comment

events in javascript

//this is an event detector for a mouseclick with Jquery
$('#id').on('click',function(){
    yourFunction(args);
});
Comment

event in javascript

addEventListener("code", function() {
  // code
});
Comment

javascript event

// An event is triggered when a user clicks on the #button element,
// which then sets the #button element's background-color to blue. 
$('#button').on('click', event => {
  $(event.currentTarget).css('background-color', 'blue');  
});
Comment

events js

import { EventEmitter } from "node:events";
/**
 * add "type":"module" in package.json
 */

class MyEmitter extends EventEmitter {}

const myEvent = new MyEmitter();

myEvent.on("event", () => {
  console.log("an event occurred!");
});

myEvent.emit("event");
Comment

JavaScript HTML DOM Events

<!DOCTYPE html>
<html>
<body>

<h1 onclick="this.innerHTML = 'Ooops!'">Click on this text!</h1>

</body>
</html>
Comment

javascripts events

let array_1 = [1, 2, 3, 4, 5, 6];
Comment

PREVIOUS NEXT
Code Example
Javascript :: input hook react 
Javascript :: draft js insert text example 
Javascript :: jest Cross origin http://localhost forbidden 
Javascript :: react multiple select dropdown 
Javascript :: select option in js dynamically 
Javascript :: jasypt 
Javascript :: javascript select2 sortable 
Javascript :: javascript string objects 
Javascript :: array 
Javascript :: window.open function 
Javascript :: navigation scroll react 
Javascript :: javascript conditional ? : 
Javascript :: jquery datepicker enable year selection 
Javascript :: how to upload picture on canvas in react 
Javascript :: jquery select 
Javascript :: Append to the text in the <p tag 
Javascript :: react composition 
Javascript :: react js and graphql integration 
Javascript :: two dimensional array in javascript 
Javascript :: return observable from function angular 
Javascript :: sprintf js 
Javascript :: crypto js 
Javascript :: react insert variable into string 
Javascript :: display unique id number in angular 
Javascript :: angular two datepickers 
Javascript :: map and reduce an array in js 
Javascript :: iterate table in jquery 
Javascript :: paper in material ui 
Javascript :: how to check whether we are running on electron or browser 
Javascript :: jquery dialog modal on modal 
ADD CONTENT
Topic
Content
Source link
Name
8+7 =