High End – Accordion – Tab click go to page top

  • In Progress
    Posted in: Highend WP Theme  
  • Customer
    jrademan
    May 30, 2015 at 11:41 am #41821

    I received the following javascript to add to make the accordion tab go to the element top:

    jQuery('.hb-accordion-tab').click(function(){
    	var $that = jQuery(this);
    
    	if ($that.hasClass('active-toggle')){
    		setTimeout(function(){
    			jQuery('html, body').animate({
    				scrollTop: $that.offset().top - 61
    			}, 200);
    
    		}, 500);
    	}
    });

    The client would also like the click to take the focus to the page top. Can that be accomplished as well?

    Sorry, this forum is for verified users only. Please Login or Register to continue

Comments are closed.