Skip to content

Instantly share code, notes, and snippets.

@koentjuh1
Created May 5, 2017 09:39
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 koentjuh1/88af4b41e598c44a8a83e20d1eba95dd to your computer and use it in GitHub Desktop.
Save koentjuh1/88af4b41e598c44a8a83e20d1eba95dd to your computer and use it in GitHub Desktop.
Disable scroll mobile
<?php
$mobile_detect = new Mobile_Detect();
?>
<?php
if($mobile_detect->isMobile() || $mobile_detect->isTablet())
{
} else {
?>
<div class="disable-scroll">
<div class="btn activate-layer"><?=LANG_MAPS_BEKIJK_KAART?></div>
</div>
<?php
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment