From c058fa0fb22dc40ef0225b21a97578cddd0aaffa Mon Sep 17 00:00:00 2001 From: Florian Merz Date: Thu, 11 Feb 2021 14:51:05 +0100 Subject: unslug ru: move --- files/ru/web/events/load/index.html | 88 ------------------------------------- 1 file changed, 88 deletions(-) delete mode 100644 files/ru/web/events/load/index.html (limited to 'files/ru/web/events/load') diff --git a/files/ru/web/events/load/index.html b/files/ru/web/events/load/index.html deleted file mode 100644 index a8d456806d..0000000000 --- a/files/ru/web/events/load/index.html +++ /dev/null @@ -1,88 +0,0 @@ ---- -title: load -slug: Web/Events/load -translation_of: Web/API/Window/load_event ---- -

Событие load происходит когда ресурс и его зависимые ресурсы закончили загружаться.

- -

General info

- -
-
Спецификация
-
DOM L3
-
Интерфейс
-
UIEvent
-
Всплывает
-
Да
-
Отменяемое
-
Нет
-
Цель
-
Window
-
Default Action
-
Нет.
-
- -

Свойства

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
PropertyTypeDescription
target {{readonlyInline}}EventTargetThe event target (the topmost target in the DOM tree).
type {{readonlyInline}}DOMStringThe type of event.
bubbles {{readonlyInline}}BooleanWhether the event normally bubbles or not.
cancelable {{readonlyInline}}BooleanWhether the event is cancellable or not.
view {{readonlyInline}}WindowProxydocument.defaultView (window of the document)
detail {{readonlyInline}}long (float)0.
- -

Пример

- -
<script>
-  window.addEventListener("load", function(event) {
-    console.log("All resources finished loading!");
-  });
-</script>
-
- -

 

- -

Связанные события

- - -- cgit v1.2.3-54-g00ecf