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