Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // Adding this event listener prints the message
  2. // into browser's console whenever the window
  3. // is resized (emits the "resize" event).
  4. //
  5. // Note that the "resize" event occurs for each
  6. // pixel that the browser being resized.
  7. window.addEventListener('resize', function () {
  8. console.log('Resize happened!')
  9. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement