Results 1 to 3 of 3

Thread: DD Tabs Menu

  1. #1
    Join Date
    Mar 2008
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default DD Tabs Menu

    Hello,

    I am having problems with the ddtabsmenu. I can`t get the tabcontent to be visible. The ddtabsmenu.js is in the right place, the ID of the subcontendt div is also correct. I donīt understand what is wrong...You can see the site here

    Please excuse my english, thats not my first language...
    I didn`t change anything in the css and js.Thanks for your help !!

    Greetings from Germany Frank


    ...
    <script type="text/javascript" src="dateien/ddtabmenu.js">
    //SYNTAX: ddtabmenu.definemenu("tab_menu_id", integer OR "auto")
    ddtabmenu.definemenu("ddtabs", auto) //initialize Tab Menu #3 with 2nd tab selected
    </script>

    </head>

    <body>
    <div id="outerGradient">
    <div id="headerShell">
    <div id="globalHeader">
    <div id="homeLink"><a href="http://www.usilin.de" title="home"><span>usilin</span></a></div>
    <div id="topNav">
    <ul>
    <li><a href="http://www.usilin.de" id="navCompany">Wir &uuml;ber uns</a></li>
    <li><a href="http://www.usilin.de" id="navServices">Impressum</a></li>
    </ul>
    </div>
    </div>
    <div id="innerShell">
    <div id="contentShell">

    <div id="ddtabs" class="solidblockmenu">
    <ul>
    <li><a href="http://www.usilin.de" rel="sb1">Home</a></li>
    <li><a href="http://www.usilin.de" rel="sb2">Produkte</a></li>
    <li><a href="http://www.usilin.de" rel="sb3">Mikrobiologie</a></li>
    <li><a href="http://www.usilin.de">Desinfektion</a></li>
    <li><a href="http://www.usilin.de">Bezugsquellen</a></li>
    <li><a href="http://www.usilin.de">Referenzen</a></li>
    <li><a href="http://www.usilin.de">Links</a></li>



  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    Warning: Please include a link to the DD script in question in your post. See this thread for the proper posting format when asking a question.

    The problem is that your initialization code is within the same SCRIPT tag that also references the external .js file. They should be separate, so:

    Code:
    <script type="text/javascript" src="dateien/ddtabmenu.js">
    /***********************************************
    * DD Tab Menu script- Đ Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/
    </script>
    
    <script type="text/javascript">
    //SYNTAX: ddtabmenu.definemenu("tab_menu_id", integer OR "auto")
    ddtabmenu.definemenu("ddtabs", auto) //initialize Tab Menu #3 with 2nd tab selected
    </script>

  3. #3
    Join Date
    Mar 2008
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Hello,

    thanks a lot for your help!

    Iīm sorry for the incorrect posting.

    Cheers Frank

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •