Skip to content

Instantly share code, notes, and snippets.

View kamenov's full-sized avatar

Desislav Kamenov kamenov

View GitHub Profile
@kamenov
kamenov / detect_mobile_devices.html
Created August 28, 2012 06:41
How to detec mobile devices on your site :)
<head >
<script type="text/javascript">// <![CDATA[
var mobile = (/iphone|ipad|ipod|iemobile|android|blackberry|mini|symbian|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
document.location = "http://vivacom.bg/m";
}
// ]]></script>
</head>