This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(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() ; | |