joomla - how to disable my website from being viewed on mobile devices? -
is there script can use disable entire website (in joomla) ,from being viewed on mobile devices? haven't used code yet. use script disable right clicking it's not mobile version. don't want mobile viewing @ all.
but of odd 1 using css3 media query so:
@media screen (max-device-width : 768px) { html,body { display: none; } }
this result in blank screen devices 768px , below. need apply above code template css file.
you maybe use javascript so:
if( /android|webos|iphone|ipad|ipod|blackberry|iemobile|opera mini/i.test(navigator.useragent) ) { getelementbyid('body').style.display = 'none'; }
i haven't tested on every mobile device out there work on most
Comments
Post a Comment