To set a fragment put in the code <a name="Step1"> and make it pass through.
To access the particualar part of the document put in #Step1 at the end of the url. Make sure you get the capitals right!
In Notes Ninjas there is extra code on the front page that redirects browsers to the correct hint.
eg: http://www.notesninjas.com/#Fragment in a new browser that isn''t already on NotesNinjas will take the user directly to this page.
There is probably a way to do this if the person is on the page already, but I haven't had to time to work that out yet!
The code to do this is in the : main frameset of this site.
<script language="JavaScript">
loc = window.location.href; if (loc.indexOf('#') > -1) { locdest = loc.substring( loc.indexOf('#')+1, loc.length ); locdestCaps = locdest.toUpperCase(); if ( locdestCaps == "LOGIN") { window.location = "http://" + window.location.host + "A555F9/nn.nsf?OpenDatabase&login"; } else { window.location = "http://" + window.location.host + "/A555F9/nn.nsf/ByAlias/" + loc.substring( loc.indexOf('#')+1, loc.length ); } } else { }
</script>