0

Is it possible for the mobile version of my site to be loaded based on browser. Chrome doesn't respond well to certain effects I have on my site, and was wondering if I could get my simplified, mobile version to load. Thanks in advance.

skyper12345
  • 63
  • 1
  • 2
  • 11

1 Answers1

1

You can use Window.matchMedia(media query):

if (window.matchMedia("(max-width: 500px)").matches) {
    /* The viewport is less than, or equal to, 500 pixels wide */
} else {
    /* The viewport is greater than 500 pixels wide */
}

https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia

Marina ES
  • 250
  • 2
  • 6