Skip to content

Instantly share code, notes, and snippets.

@kazuph
Created April 26, 2012 23:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kazuph/2504175 to your computer and use it in GitHub Desktop.
Save kazuph/2504175 to your computer and use it in GitHub Desktop.
<!-- jQuery Mobile の初期設定, headではjQueryとjQuery Mobileの定義の間に書く -->
<script type="text/javascript">
$(document).bind("mobileinit",
function(){
//$.mobile.ajaxEnabled = false; //Ajaxの仕様を無効にする
$.mobile.defaultPageTransition = "none"; //画面遷移方法の選択
$.mobile.loadingMessage = "ページ読み込み中...";
$.mobile.pageLoadErrorMessage = "ページの読み込みに<br />失敗しました";
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment