From a886fb2b54d0aa4d8b314e66b867c806435d0f50 Mon Sep 17 00:00:00 2001 From: phenomenallois Date: Tue, 2 May 2023 20:03:24 -0700 Subject: [PATCH] i edited and save my asignment --- assigment.json | 354 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 339 insertions(+), 15 deletions(-) diff --git a/assigment.json b/assigment.json index 39a9251..e450a9c 100644 --- a/assigment.json +++ b/assigment.json @@ -1,16 +1,340 @@ + + + + + + + + + + + + + + + + + + + + + + + + + [ - { - "Clipboard": { - "onCopy": "lorenm loraem lorem", - "onCut": "lorem lorem lorem", - "onPaste": "lorem lorem lorem" - } - }, - { - "Composition":{ - "onCompositionEnd": "lorem lorem lorem", - "onCompositionStart": "lorem lorem lorem", - "onCompositionUpdate": "lorem lorem lorem" - } - } -] \ No newline at end of file + +{ + +"Clipboard": { + +"onCopy":"The oncopy event occurs when the user copies an element text or a whole element in the browser", + +"onCut":"The oncut event occurs when the user cuts the content of an element.The oncut event is mostly used on elements with type=\"text\"", + +"onPaste":"The onpaste event occurs when the user pastes some content into an element. The onpaste event is mostly used on elements with type=\"text\"" + } + +}, + + + + + { + +"Composition": { + +"onCompositionEnd":"The compositionend event is fired when a text composition system such as an input method editor completes or cancels the current composition session", + +"onCompositionStart":"The compositionstart event is fired when a text composition system such as an input method editor starts a new composition session", + +"onCompositionUpdate":"The compositionupdate event is fired when a new character is received in the context of a text composition session controlled by a text composition system such as an input method editor" + + } + }, + + + + + { + +"Keyboard": { + +"onKeyDown":"The onkeydown event occurs when the user presses a key on the keyboard", + +"onKeyPress":"The onkeypress event occurs when the user presses a key on the keyboard", + +"onKeyUp":"The onkeyup event occurs when the user releases a key on the keyboard" + + } + + }, + + + + + { + +"Focus": { + +"onFocus":"The onfocus event occurs when an element gets focus. The onfocus event is often used on input fields", + +"onBlur":"The onblur event occurs when an HTML element loses focus. The onblur event is often used on input fields." + + } + +}, + + + + + + + + + + + + + + { + +"Form": { + +"onChange":"The onchange event occurs when the value of an HTML element is changed", + +"onInput":"The oninput event occurs when an element gets input. The oninput event occurs when the value of an or