Views 2454 Votes 0 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print

In these modern days mobile devices are really very common. So every programmer should be aware of their applications compatibility with mobile devices. For that the applications must have the functionality to Detect Mobile Devices. Using JavaScript or jQuery it is really very easy to Detect Mobile Devices.

How to Detect Mobile Devices with jQuery or JavaScript

There are many ways to detect Mobile Devices. In this lesson I will share some tricks on How to Detect Mobile Devices with Javascript or jQuery. So lets get started.

1. Using a JavaScript Function to Detect Mobile Devices

This example shows a function which will return if your device is Mobile or not.

var isMobile = {
    Android: function() {
        return navigator.userAgent.match(/Android/i);
    },
    BlackBerry: function() {
        return navigator.userAgent.match(/BlackBerry/i);
    },
    iOS: function() {
        return navigator.userAgent.match(/iPhone|iPad|iPod/i);
    },
    Opera: function() {
        return navigator.userAgent.match(/Opera Mini/i);
    },
    Windows: function() {
        return navigator.userAgent.match(/IEMobile/i);
    },
    any: function() {
        return (isMobile.Android() || isMobile.BlackBerry() ||
            isMobile.iOS() || isMobile.Opera() || isMobile.Windows());
    }
};


Now you can check if its a Mobile Device by using this function:

if(isMobile.any()) {
   alert("This is a Mobile Device");
}

If this is a Mobile Device then an alertbox will popup.

2. Another JavaScript trick to Detect Mobile Devices

This simple code will check if the current device is a mobile and you can put your tasks inside the if statement when it detects a Mobile Device.

if( /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|
    Opera Mini/i.test(navigator.userAgent) )
{
    // tasks to do if it is a Mobile Device
    alert("Mobile Detected");
}

3. Using jQuery or any other popular language

Detect Mobile Browser has a great collection of scripts to Detect Mobile Devices. You can get Mobile Device detection scripts for Apache, ASP, ASP.NET, ColdFusion, C#, IIS, JSP, JavaScript, jQuery, Lasso, nginx, node.js, PHP, Perl, Python, Rails etc. The script list is pretty much big so don’t hesitate to explore this with your favorite language script.

There is also a JavaScript Library named isMobile. It is really fast and very easy to use. So you can give it a try. 

Hope now you know how to Detect Mobile Devices.


[출처] http://jstricks.com/detect-mobile-devices-javascript-jquery/

?

List of Articles
No. Category Subject Author Date Views
681 Develop [android] 안드로이드 동영상 스트리밍 예제 2 hooni 2015.01.02 4823
680 Develop [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #2 (client) hooni 2015.01.02 2045
679 Develop [java] netty (비동기 이벤트 방식 네트워크 프레임워크) 사용법 #1 (server) 1 hooni 2015.01.02 2214
678 Develop ZBar 라이브러리를 이용한 바코드 스캔 앱 개발하기 file hooni 2015.01.01 1629
677 Develop [ios] 비동기 블럭 코드 예제 hooni 2014.11.21 825
676 Develop [ios] 스크린 캡쳐 (전원버튼 + 홈버튼) 호출 알아내기 hooni 2014.11.19 1559
675 Develop [android] 가속도 센서를 이용한 흔듦(Shake) 감지 file hooni 2014.11.04 1898
674 Develop [web] 더 빠른 웹을 위한 프로토콜, 'HTTP/2' file hooni 2014.10.20 1641
673 Develop GPL, AGPL, MPL,.. 한눈에 보는 오픈소스SW 라이선스 file hooni 2014.10.14 1146
672 Develop [js] 좋은 강연자료 & UI 자료 hooni 2014.10.06 912
671 Develop '2014 모바일 개발 트렌드' 발표자료입니다. file hooni 2014.10.02 986
670 Develop [ios] iOS 8 개발자가 우선 알아야 할 3가지 file hooni 2014.10.02 907
669 Develop [js] jQuery 셀 병합 1 file hooni 2014.09.23 3499
668 Develop [ios] Xcode cannot run using the selected device hooni 2014.08.14 1796
667 Develop [ios] Objective-C 에서 자주 사용하는 수학 함수와 유용한 Define hooni 2014.08.08 1865
666 Develop [ios] 카테고리 확장 메소드를 찾지 못하는 경우 file hooni 2014.08.08 2001
Board Pagination Prev 1 ... 9 10 11 12 13 ... 53 Next
/ 53