Scroll to content does not work
-
When I click a tab, I want it to scroll to the content. This is very important for mobile. The plugin does not seem to do that. I have disabled all other plugins, but still it doesn’t work.
See https://truecompanionstraining.com/classes/faq/In the file content.php on line 252, I added the following code, but it still doesn’t work.
jQuery(‘#tab_container_<?php echo $post_id; ?>’).tab({
fx: { duration: ‘slow’, opacity: ‘toggle’ },
show: function(e,ui){
jQuery(‘html, body’).stop().animate({
scrollTop: jQuery(ui.tab.getAttribute(‘href’)).offset().top
}, 300,’easeInOutExpo’);
}
});jQuery(‘#tab_container_<?php echo $post_id; ?> li a’).bind(‘click’,function(event){
var $anchor = jQuery(this);
i.preventDefault();
});Please help!
Thanks so much!
- The topic ‘Scroll to content does not work’ is closed to new replies.