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
Ross JamesRoss James 

Hyperlink to Section

I use Hyperlinks to jump to Related Lists on (rather long and crowded) pages, but would like to know if you can link to a Section within the Detail.

 

If so, what do I need to look for in the page source?

 

Any help is appreciated.

Best Answer chosen by Admin (Salesforce Developers) 
Alex_ConfigeroAlex_Configero

 

you can link to any html tag with an id attribute by using the #attributeid bookmak notation in the url.

 

for example if you find a <span id="someid"> you can link to it by going to the page URL followed by #someid

 

example on this page:

 

http://boards.developerforce.com/t5/Formulas-Validation-Rules/Hyperlink-to-Section/m-p/267315#M11228

 

 

All Answers

Alex_ConfigeroAlex_Configero

 

you can link to any html tag with an id attribute by using the #attributeid bookmak notation in the url.

 

for example if you find a <span id="someid"> you can link to it by going to the page URL followed by #someid

 

example on this page:

 

http://boards.developerforce.com/t5/Formulas-Validation-Rules/Hyperlink-to-Section/m-p/267315#M11228

 

 

This was selected as the best answer
Ross JamesRoss James

Alex

 

Thanks for your assistance. It is the simple things that often stump me. I really appreciate this.