Skip to content

Instantly share code, notes, and snippets.

@psalter27
psalter27 / gist:1231681
Created September 21, 2011 09:44
detectDevice function that is bound to a click action
$(document).ready(function() {
//Global function that will detect what device the page is being viewed on
function globalDetectDevice() {
var deviceIphone = "iphone" ;
var deviceIpod = "ipod" ;
var deviceAndroid = "android" ;
//Initialize our user agent string to lower case.
var uagent = navigator.userAgent.toLowerCase() ;