+ Reply to Thread
Page 1 of 2 12 LastLast
Results 1 to 10 of 16
  1. #1
    Join Date
    Aug 2004
    Posts
    388
    Downloads
    0
    Uploads
    0
    Blog Entries
    1

    Question html code for drop down menus

    I need some help on the html code to use for drop down menus with links in them.

    Thanks

  2. WebmasterServe Adverts:
  3. #2
    Join Date
    Jan 2009
    Location
    Hannover, Germany
    Posts
    227
    Downloads
    0
    Uploads
    0

    Default

    did you try to google? because there are various site that show how to do it... which software are you useing ? a basic html-editor or something like dreamweaver?

  4. #3
    IndianHost Guest

    Default

    You need to use DHTML and javascript to create menu instead of HTML. There are many sample scripts available on the net.

  5. #4

    Default

    You may look for this resource.

  6. #5

    Default

    I think this menu is very simple to use

    htmldog.com/articles/suckerfish/dropdowns/

  7. #6

    Default

    i think you must use javascript for this

  8. #7
    Join Date
    May 2009
    Posts
    13
    Downloads
    0
    Uploads
    0

    Default

    hi you can use the dropdown box by using the scripts may vb script or java script.
    <SCRIPT TYPE="text/javascript">
    <!--
    function dropdown(mySel)
    {
    var myWin, myVal;
    myVal = mySel.options[mySel.selectedIndex].value;
    if(myVal)
    {
    if(mySel.form.target)myWin = parent[mySel.form.target];
    else myWin = window;
    if (! myWin) return true;
    myWin.location = myVal;
    }
    return false;
    }
    //-->
    </SCRIPT>

  9. #8
    atanu Guest

    Default

    Quote Originally Posted by wpthemeguru View Post
    I think this menu is very simple to use

    htmldog.com/articles/suckerfish/dropdowns/
    Ya, I find this very helpful.

  10. #9

    Default

    css will also do!

    google will help you with it :)

    good luck

  11. #10
    joseph Guest

    Default

    yes it can be possible through javascript dhtml or with CSS

+ Reply to Thread
Page 1 of 2 12 LastLast

Similar Threads

  1. Parham's PHP Tutorial
    By Ardenn in forum Website Programming Discussion
    Replies: 14
    Last Post: 02-10-2012, 10:55 AM
  2. HTML
    By SoaringUSAEagle in forum Website Programming Discussion
    Replies: 8
    Last Post: 11-12-2010, 06:20 AM
  3. Using XHTML Instead of HTML Coding
    By ms2134 in forum HTML
    Replies: 9
    Last Post: 05-17-2009, 02:24 PM
  4. HTML vs PHP pages?
    By imported_niky in forum Search Engine Marketing
    Replies: 0
    Last Post: 07-24-2008, 07:17 PM
  5. Replies: 0
    Last Post: 05-10-2005, 09:24 PM

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110