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