Skip to content

Instantly share code, notes, and snippets.

@igorpronin
Created September 13, 2015 09:39
Show Gist options
  • Save igorpronin/6be3106fb1fa3848ae26 to your computer and use it in GitHub Desktop.
Save igorpronin/6be3106fb1fa3848ae26 to your computer and use it in GitHub Desktop.
Следить за событиями на странице
// набирать в консоли
// запуск функции
monitorEvents(document.body); // Следить за всеми событиями
monitorEvents(document.body, "mouse"); // Следить за событиями мыши
monitorEvents(document.body, "key"); // Следить за событиями клавиатуры
monitorEvents(document.body, "touch"); // Следить за событиями прикосновений к экрану
monitorEvents(document.body, "control"); // Следить за событиями resize, scroll, select и пр.
// остановка функции
unmonitorEvents(document.body);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment