Avoid window jump to top when clicking #-links

后端 未结 12 1150
礼貌的吻别
礼貌的吻别 2020-11-27 21:32

I\'ve got a page with some questions and answers, the answers are collapsed by default. When they click the question I expand the hidden answer-div. The problem is that when

12条回答
  •  -上瘾入骨i
    2020-11-27 21:56

    Example with nice scrolling to answer content:

    $("#question_title").click(function(){
      var $answer=$("#answer");
      $answer.slideDown();
      $.scrollTo( $answer, 800 );
      return false;
    });
    

    I'm used jQuery scrollTo plugin.

提交回复
热议问题