Scrolling automatically to a question | XM Community
Skip to main content

Scrolling automatically to a question

  • March 2, 2023
  • 2 replies
  • 170 views

Forum|alt.badge.img+6
  • Level 2 ●●

Hi, I have a page with two questions. I want the page to scroll down to the second question on load. Is there a way to do it using js?

2 replies

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • March 2, 2023

You can use:
jQuery(".QuestionOuter").last().get(0).scrollIntoView();


Forum|alt.badge.img+6
  • Author
  • Level 2 ●●
  • March 2, 2023

Wow, thanks TomG. This was much easier than I thought!