Jquery Tabs - Using Inernal URL links
I'm using Jquery mobile in my website and tabs navigating didn't work well when adding URL in tab instead a #div tag. I need to change the tab on swipe event.
<div data-role="tabs" id="tabs">
<a href="#one" class="ui-btn-active" data-ajax="false" data-href="#">ONLINE</a>
<a href="#two" data-ajax="false" data-href="#">SPECS</a>
<a href="another-page.html" data-ajax="false" data-href="#">LOCAL</a>
Jquery code for Swipe
$(".ui-tabs-panel > :not(.no-swipe)").on("swiperight swipeleft", function (e) {
var active = $("#tabs").tabs("option", "active");
if (e.type === "swiperight") {
$("#tabs").tabs("option", "active", active - 1);
}
else {
$("#tabs").tabs("option", "active", active + 1);
}
});