I have a page that hides/shows various blocks of text, and I want to know if I can have that page load a specific section by sending variables in the url which would enable me to have more links on other pages to each section.
Here's how each section changes:
function StoryNavClick(strPage)
{
if (bLoaded)
{
if (strPage != strSelectedStoryPage)
{
// Unhighlight the previous navigation
ChangeImage('nav_story_' +strSelectedStoryPage, 'nav_story_' +strSelectedStoryPage +'_off');
// Highlight the new navigation
ChangeImage('nav_story_' +strPage, 'nav_story_' +strPage +'_on');
If I understand what you're asking, the answer is yes. But that is all I can tell you without a clearer understanding of just how you're wanting it done.
Bookmarks