Skip to content

Instantly share code, notes, and snippets.

@braddalton
Created October 10, 2016 12:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save braddalton/b40efba09019215d8e95a02a6294c537 to your computer and use it in GitHub Desktop.
Save braddalton/b40efba09019215d8e95a02a6294c537 to your computer and use it in GitHub Desktop.
Load Different Page For Mobile Users http://wp.me/p1lTu0-gAN
jQuery(document).ready(function($) {
if ( ($( window).width() < 680 ) ) {
document.location = "http://example.com/mobile-front-page";
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment