Announcement

Collapse
No announcement yet.

Including an SellerDeck Generated Drop-Down Anywhere on the Internet

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Including an SellerDeck Generated Drop-Down Anywhere on the Internet

    Any of the the examples given at the bottom of this article should work anywhere on the Internet, with the following conditions:

    Obviously the SellerDeck variables layouts will not be substituted on other pages, so you will need to include the fully generated call to the *.js file – including full path information. For example:

    HTML Code:
    <script language="JavaScript" src="Act_section_tree.js"></script>
    will not work as it refers to a local file called 'Act_section_tree.js'. What will work are the following examples:

    HTML Code:
    <script language="JavaScript" src="../acatalog/Act_section_tree.js"></script>
    or

    HTML Code:
    <script language="JavaScript" src="http://your.URL/acatalog/Act_section_tree.js"></script>
    You also need to include the code contained within actiniccore.js and actinicextras.js. In other words, also include lines of the following form:

    HTML Code:
    <script language="JavaScript" src="../acatalog/actiniccore.js"></script>
    or

    HTML Code:
    <script language="JavaScript" src="http://your.URL/acatalog/actiniccore.js"></script>
    and

    HTML Code:
    <script language="JavaScript" src="../acatalog/actinicextras.js"></script>
    or

    HTML Code:
    <script language="JavaScript" src="http://your.URL/acatalog/actinicextras.js"></script>
    These lines must be ABOVE any other script functions in the headers of your web site pages.

    For more information about creating section lists with javascript see this article

    Examples of Section Lists:
    Creating a Jump List Containing the Top-Level Sections
    Creating a Drop-Down List Containing the Top-Level Sections and Sub Sections
    Creating a List Box Containing the Top-Level Sections
    Creating a bulleted list containing top-level sections
    Creating a List of Hyperlinks with Sections and Sub-sections
    Creating a List of Hyperlinks with Sections and Two Levels of Sub-sections
    Creating a Section List (With Sub-Sections) in 2 Columns
    Listing Sub-Sections Within Each Main Section
    Inserting a List of Section Images With JavaScript
Working...
X