Please enable JavaScript.
Coggle requires JavaScript to display documents.
JavaScript - Coggle Diagram
JavaScript
APIS
-
Storage
Localstorage
Only possible to add strrings, but we can use JSON.strringify to add other types
-
-
-
Geolocation API
Only works in secure context (HTTPS or localhost), simple API
-
DOM
Events
Event propagation
Capturing
Event which is in capture mode only is called during capture phase (from top to bottom). Other events are triggered in other phase.
Bubbling
Event which is in bubbling mode only is called during bubble phase (from bottom to top). Other events are triggered in other phase.