Skip to content

Instantly share code, notes, and snippets.

@sturobson
Created November 18, 2013 19:40
Show Gist options
  • Save sturobson/7534018 to your computer and use it in GitHub Desktop.
Save sturobson/7534018 to your computer and use it in GitHub Desktop.
// Mobile / Desktop JS
$( '.desktop-site-link' ).click(function() {
viewport = document.querySelector('meta[name=viewport]');
viewport.setAttribute('content', 'width=1024');
return false;
});
$( '.mobile-site-link' ).click(function() {
viewport = document.querySelector('meta[name=viewport]');
viewport.setAttribute('content', 'width=device-width, initial-scale=1.0');
return false;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment