iOS Chrome test
by catfood
JavaScript
;(function($) {
$(function(){
var _UA = navigator.userAgent;
var _asiPhone = (_UA.indexOf('iPhone') > -1||_UA.indexOf('iPod') > -1)? true:false;
if (_asiPhone) {
var windowWidth = $(window).width();
$(window).on('load', function(){
if(windowWidth < 641) {
alert("windowWidth < 641")
} else {
if($("meta[name='viewport']").length == 0){
alert('$("meta[name='viewport']").length == 0')
}
}
});
}
});//end $(function)
})(jQuery);