Page 1 of 2 12 LastLast
Results 1 to 10 of 14
  1. #1
    Join Date
    Jul 2005
    Location
    Scotland
    Posts
    1,530
    Tokens
    50
    Habbo
    OhLiam

    Latest Awards:

    Exclamation [HELP] with Switch Nav's Pls

    I want a navigator like this one :-
    You may know where this is from lol. :]


    I found the site they use I uploaded it but it says ERROR in script??
    They use : http://www.dynamicdrive.com/dynamici...switchmenu.htm

    Can anyone help me?

  2. #2
    Join Date
    Jan 2007
    Posts
    825
    Tokens
    0

    Default

    Just Use Images Instead Of Just Text and Use Tables Or Divs
    That post was really sensible!

  3. #3
    Join Date
    Jul 2005
    Location
    Scotland
    Posts
    1,530
    Tokens
    50
    Habbo
    OhLiam

    Latest Awards:

    Default

    Quote Originally Posted by Mashi View Post
    Just Use Images Instead Of Just Text and Use Tables Or Divs
    didn't help me lol.
    Still don't get it !

  4. #4
    Join Date
    Jan 2007
    Posts
    825
    Tokens
    0

  5. #5
    Join Date
    May 2007
    Location
    Scotland
    Posts
    294
    Tokens
    0

    Default

    There called drop down menus

    You need to know a bit of JAVAScript for this aswell.
    Sam

  6. #6
    Join Date
    Sep 2006
    Location
    Doncaster, UK
    Posts
    4,081
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Highjacker-x View Post
    There called drop down menus

    You need to know a bit of JAVAScript for this aswell.
    No, they're called switch menu's.

    & no you don't.
    Quote Originally Posted by Nain View Post
    i voted 'Not Sure' as im, not sure!

  7. #7
    Join Date
    May 2007
    Location
    Scotland
    Posts
    294
    Tokens
    0

    Default

    I Have exactly the same one.

    MYNE is called a DROP DOWN menu.

    MYNE is done is JAVAScript.

    DOT
    Sam

  8. #8
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    I find a custom code works easier:

    HTML Code:
    <html>
    <head>
    <script type="text/javascript">
    
    function switch(div) {
    
    var el=document.getElementById(div);
    el.style.display=el.style.display=='none'? 'block' : 'block';
    
    }
    </script>
    </head>
    <body>
    <div id="title"><a onClick="switch(1)">TITLE LOL</a></div><br />
    <div id="1" style="display: none">lol</div>
    </body>
    </html>
    Something like that SHOULD work..
    Last edited by Invent; 13-06-2007 at 06:42 PM.

  9. #9
    Join Date
    May 2007
    Location
    Scotland
    Posts
    294
    Tokens
    0

    Default

    Quote Originally Posted by Invent View Post
    I find a custom code works easier:

    HTML Code:
    <script type="text/javascript">
     
    function switch(div) {
     
    document.getElementById(div).style.display=document.getElementById(div).style.display=='none'? 'block' : 'block';
     
    }
    </script>
    <div id="title"><a onClick="switch('1');">TITLE LOL</a></div><br />
    <div id="1">lol</div>
    In javascript..

    Ty.
    Sam

  10. #10
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    Yes it's javascript, but do you have to understand the javascript code? no.

Page 1 of 2 12 LastLast

Posting Permissions

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