I am trying to build a summary section for a velocity template.How can we navigate to different sections of the page using velocity scripting.
I am new to velocity. Please help me out in this.
Thanks!
I am trying to build a summary section for a velocity template.How can we navigate to different sections of the page using velocity scripting.
I am new to velocity. Please help me out in this.
Thanks!
Navigate within page is an HTML feature using link to specific id.
You can use velocity to hold and use same variable for each section:
#set( $section_one = "nav1" )
<a href="#$section_one">first </a>
.....
<div id="$section_one"></div>