I am trying to use Jquery-Joyride - http://www.zurb.com/playground/jquery-joyride-feature-tour-plugin, but I can not get it to work with Jquery Mobile. As soon as I add the standard JQM tags the help windows will no longer display.
Here is what I'm trying: .....
<ol id="joyRideTipContent">
<li data-id="numero2" data-text="Next" class="custom">
<h2>Stop #1</h2>
<p>You can control all the details for you tour stop. Any valid HTML will work inside of Joyride.</p>
</li>
....
<script>
$(window).load(function() {
$('#joyRideTipContent').joyride({postStepCallback : function (index, tip){
if (index == 2) {
$(this).joyride('set_li', false, 1);
}
}});
});
</script>
.....
<div class="row">
<div class="four columns">
<img src="280x120.gif"></img>
</div>
<div class="eight columns">
<h3 id="numero2">Customize Each Stop Along the Way</h3>
<p>Aenean eu leo quam. Pellentesque ornare sem lacinia quam venenatis vestibulum. </p>
</div>
</div>
.....
Everything works fine with the code above. However, as soon as I add the JQM specific tag, the help windows no longer appear.
<div data-role="page" class="type-home" data-dom-cache="false" id="home">
I'm not sure how to get this working. Any help is appreciated.