Skip to content

Instantly share code, notes, and snippets.

@Takazudo
Created February 9, 2011 07:00
Show Gist options
  • Save Takazudo/818073 to your computer and use it in GitHub Desktop.
Save Takazudo/818073 to your computer and use it in GitHub Desktop.
detect iPhone version less than 4.
var ua = navigator.userAgent;
$.browser.iPhone = /iphone/i.test(ua);
$.browser.iPhoneLt4 = function(){
if(!$.browser.iPhone){
return false;
}
if(window.devicePixelRatio >= 2){
return false;
}
return true;
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment