Skip to content

Instantly share code, notes, and snippets.

@hristiank
Created October 26, 2016 13:18
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 hristiank/e892e6c74a3e97850e2cbfe5e0f3f768 to your computer and use it in GitHub Desktop.
Save hristiank/e892e6c74a3e97850e2cbfe5e0f3f768 to your computer and use it in GitHub Desktop.
Detect Device (Desktop/Mobile) & Write to a Hidden Field
<script>
function deviceDetect() {
var w = Math.max(document.body.offsetWidth, document.documentElement.offsetWidth);
return (w > 600) ? 'desktop': 'mobile';
};
$('#device').val(deviceDetect());
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment