The below configuration will pause the tour after tooltip 2 has appeared (index of 1). In the postStepCallback
we check to see if the tour has been paused and fire some code.
<script>
$(window).load(function() {
$('#joyRideTipContent').joyride({
pauseAfter : [1],
postStepCallback : function (index, tip) {
if ($(this).joyride('paused')) {
console.log('Hey there, you\'ve paused the tour.');
// fire your code here
}
}
});
});
</script>
When our code has finished executing we can fire $(window).joyride('resume');
and the tour will continue.
I too am having issues with the resume portion. Was this ever resolved?