function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
GoldwinGoldwin 

Article type template using visualforce page

I need to display all the question answers like help in single page. when the suer clicks the question link at the top, it should takes to the answers in the same page.

 

is it possible to do the same functionality using Article? if yes, how we can do that?

super developersuper developer

We can Do this same as html in vf

 

<a href="#q1">1</a>

<a href="#q2">2</a>

<a href="#q3">3</a>

 

<a name="q1">Question 1</a>

1.Ans1 2.ans2

<a name="q2">Question 2</a>

1.Ans1 2.ans2

<a name="q3">Question 3</a>

1.Ans1 2.ans2