Skip to content

Instantly share code, notes, and snippets.

@fabiofidanza
Created December 4, 2024 09:47
Show Gist options
  • Save fabiofidanza/ad244db638b0190d01f833046205c0d6 to your computer and use it in GitHub Desktop.
Save fabiofidanza/ad244db638b0190d01f833046205c0d6 to your computer and use it in GitHub Desktop.
Check mobile media query in javascript
function _isMobile() {
const mobileBreapoint = window.getComputedStyle(document.body).getPropertyValue('--mobile-breakpoint');
const mobileMediaQuery = `only screen and (max-width: ${mobileBreapoint})`;
console.log(mobileMediaQuery);
return window.matchMedia(mobileMediaQuery).matches;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment