I've got home.html and mobilehome.html and I wanted to change between the pages when you resized the screen to mobile widths.
if (screen.width <= 600) {
document.location = "HomeMobile.html";
}
Tried using this, it works for Responsive testing mode on chrome and firefox but not when simply resizing your window.
I tried doing them on the same page using viewport but i wanted to cut away the majority of page when changing to mobile to keep it clean.