タッチ対応デバイス用に別のトリガーをターゲットにする必要がありますか?
URL に id 変数を渡し、ページ上のタブをそのタブにジャンプさせたいと考えています。タッチ対応デバイスでは機能しません。
これがコードです。
$(function() {
// if hash is set
if(window.location.hash) {
var $tabs = $('#tabs'),
// find tab nav item with matching id
$target = $tabs.find('.tab-nav li'+window.location.hash);
// if target exists trigger the set event
if($target.length) {
$tabs.trigger('gumby.set', $target.index());
}
}
});