How to do scroll to section on the page that wanted to see after click button on header (on every page) than redirected to another page after that automatically scroll to that section on that another page... ?
I have already do this, but it is only work when I am on that page that there is the wanted section, but if I on another page, it is not working only redirect to that page but not scrolling) Tq
Here is my code :
jQuery(document).ready(function() {
$("div[data-role*='page']").live('pageshow', function(event, ui){
$('a.logo_print').click(function(event){
setTimeout(function(){
$.mobile.silentScroll($("#how_to_print").offset().top);
},100);
});
});
Any idea? Thanks