Skip to content

Instantly share code, notes, and snippets.

@sr9yar
Created June 9, 2019 12:38
Show Gist options
  • Save sr9yar/cd4ed1c3960d1959116363b17d3aabdd to your computer and use it in GitHub Desktop.
Save sr9yar/cd4ed1c3960d1959116363b17d3aabdd to your computer and use it in GitHub Desktop.
Browser window resize event listener
function handleResize() {
const heights = {};
heights.window = window.innerHeight;
const [contactsTable] = document.getElementsByClassName('contacts-table');
if (contactsTable) {
heights.contactsTable = contactsTable.offsetHeight;
}
console.log(heights);
}
window.addEventListener('resize', handleResize);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment