jQuery Mobile 기본 베이스 구조 및 head 메타 설정 등등 입니다.

2013.11.26일자 갱신


-----------------------------------------------------------------------------------------------------------


<!DOCTYPE html>

<html>

<head>

<title>

jQuery Mobile Application

</title>

<meta charset="euc-kr">

<meta name="apple-mobile-web-app-capable" content="yes">

<meta name="viewport" content="initial-scale=1.0, user-scalable=no">


<link rel="stylesheet" href="https://d10ajoocuyu32n.cloudfront.net/mobile/1.3.1/jquery.mobile-1.3.1.min.css">


<!-- jQuery and jQuery Mobile -->

<script src="https://d10ajoocuyu32n.cloudfront.net/jquery-1.9.1.min.js"></script>

<script src="https://d10ajoocuyu32n.cloudfront.net/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>


<!-- Extra Codiqa features -->

<script src="https://d10ajoocuyu32n.cloudfront.net/codiqa.ext.js"></script>

</head>

<body>

</body>

</html>



-----------------------------------------------------------------------------------------------------------