일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
31 |
Tags
- 운정
- s4a
- 시작하기
- 안드로이드
- 잡토이 메이킹 코딩 학원
- 아두이노
- 강좌
- 스크래치
- tomcat
- jobtoy
- 설치
- 톰캣
- mysql
- 라즈베리파이
- Spring Security
- jsp
- 오라클
- 코딩
- 설정
- 유니티
- oracle
- MSSQL
- librecad
- Unity
- 리브레캐드
- 파주
- 예제
- 잡토이
- Android
- html5
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 |