jquery-guide
jquery-guide copied to clipboard
Scroll feature is not working properly on Mobile screens
When my walkthrough is going to the next step. It doesnot scroll on mobile screens
its not working on desktop either
add a scrollTop function while calling the script
function domoGuide() { guide = $.guide({ actions: [ {
{
element: $('#home_tour7'),
content: '<p>Access the menu for more options</p>',
offsetX: -140,
offsetY: 0,
beforeFunc: function (g) {
$('html, body').animate({
scrollTop: $("#home_tour7").offset().top
},0)
}
}
}
]
});