Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save yoshifumi0521/4196168 to your computer and use it in GitHub Desktop.
Save yoshifumi0521/4196168 to your computer and use it in GitHub Desktop.
RailsでjQueryMobileをのっけると、ページ遷移でおかしい挙動があるので、個別にページ遷移でAjaxを無効にする。2つ方法がある。
<!-- リンク要素のdata-ajax属性を"false"にする。 -->
<a href="page2.html" data-ajax="false">page2へ</a>
<!-- リンク要素のrel要素で、"external"を指定する。 -->
<a href="page2.html" rel="external">page2へ</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment