How can you navigate to a page without adding it to JQTouches internal history stack?
I have something like:
<div id="section1"></div>
<div id="section2"></div>
<div id="section3"></div>
and using javascript I navigate from #section1 to #section2 using:
jQT.goTo($('#section2'), 'slide'); //with history tracking
and then to #section3:
jQT.goTo($('#section3'), 'slide'); //want this to be without history tracking
So if I had a back button on #section3 and clicked it, it would take me back to #section1 because #section2 would not have been added to the history stack.