• Hello.

    I hope any of you can help me…
    I need to make a dropdown menu in my rigth sidebar.
    I have tried many plugin-functions and also google a lot to find something usefull, but i am far from where i want to be… :-/
    I need a dropdown menu that can fload if you stand on a topic/side in rigth sidebar.
    Please help…

    Thanks in advance.

    Q

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter tasawwufdk

    (@tasawwufdk)

    Hmm..
    Isn’t there anyone that can help? ??

    <script type=”text/javascript”>
    function show(id)
    {
    if ( document.getElementById(id).style.display == ‘none’ )
    document.getElementById(id).style.display = “”;
    }
    function hide(id)
    {
    if ( document.getElementById(id).style.display == ” )
    document.getElementById(id).style.display = “none”;
    }
    </script>

    ///////// java script for drop down list . its function written above..

    <div id=”home” style=”display:none;”>
    <table>
    <tr>
    <td>one</td>
    </tr>
    <tr>
    <td>two</td>
    </tr>
    <tr>
    <td>three</td>
    </tr>
    </table>
    </div>
    //////// this html code ll call the java script…

    <p > ” onmouseover=”show(‘home’); cursor:pointer;”>Home &nbsp&nbsp&nbsp&nbsp&nbsp About &nbsp&nbsp&nbsp&nbsp&nbsp SET &nbsp&nbsp&nbsp&nbsp&nbsp Mindshare </p>

    //////// this is where tat drop down list ll be put up…

    Thread Starter tasawwufdk

    (@tasawwufdk)

    Great. Thanks for reply. ??
    But it seems like I’ve been blocked from my site now, while i was trying to do as you’ve described… :-/
    Better make a new post for that.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Help!! Need to make a dropdown menu in my rigth sidebar’ is closed to new replies.