rel="external" を書かずに一括設定

jQuery mobile で、AJAXによるページ移動を避けるために、
以下のように、rel="external" 属性を書くが、

  <a href="http://xxxx" rel="external">リンク</a>


各々のリンクにこれを書かなくても、jQuery mobile *.js の前に、以下を記述すれば、一括で設定できる。

以下、http://blog.zaq.ne.jp/oboe2uran/article/772/ で修正


<script src="">http://code.jquery.com/jquery-1.7.1.min.js">

<script type="text/javascript">
$(document).bind("mobileinit", function(){
  $.mobile.ajaxLinksEnabled = false;
});
</script>

<script src="">http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js">