| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- s4a
- jobtoy
- tomcat
- Spring Security
- 시작하기
- 잡토이 메이킹 코딩 학원
- 스크래치
- 설정
- 잡토이
- MSSQL
- oracle
- 강좌
- html5
- Android
- 유니티
- 예제
- 아두이노
- 리브레캐드
- jsp
- 설치
- 운정
- 코딩
- 파주
- mysql
- 안드로이드
- librecad
- 라즈베리파이
- Unity
- 오라클
- 톰캣
Archives
- Today
- Total
랩제이
[mobile web] jquery mobile configurable option 설정하기 본문
반응형
[mobile web] jquery mobile configurable option 설정하기
1. 방법 1
<!-- jquery mobile configurable option -->
<script language="javascript" type="text/javascript">
$.extend( $.mobile , {
ajaxEnabled : false,
hashListeningEnabled: false
});
</script>
2. 방법 2
$(document).bind("mobileinit",function(){
$.extend($.mobile,{
defaultTransition:'slide',
loadingMessage:'Now Loding..',
ajaxEnabled:false
,hashListeningEnabled: false//history && hashes
,linkBindingEnabled : false
,autoInitialize:false
,metaViewportContent: 'width=device-width,minimum-scale=0.5,maximum-scale=0.5'
});
});
[mobile web] jquery mobile configurable option 설정하기
'programming > mobile web' 카테고리의 다른 글
| [mobile web] jquery hash change (0) | 2012.09.11 |
|---|---|
| [mobile web] jquery mobile 초기화 설정 ajax 관련 오류 수정하기 (0) | 2012.07.19 |
| [mobile web] User Agent Switcher (0) | 2012.07.02 |
| [mobile web] 바로가기 아이콘 (0) | 2012.07.01 |
| [mobile web] 로직 검토 (0) | 2012.06.15 |