Results 1 to 4 of 4

Thread: Want to make this left nav bar

  1. #1
    Join Date
    Feb 2007
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question Want to make this left nav bar

    http://www.microsoft.com/en/us/default.aspx

    This left navigation bar I would like to make. I am using the dynamic ajax content. What I want to happen is have the content change on a mouse rollover.

    Can anyone help me. Pleeease.

    my current site is at www.lorettagrogan.com

    take a look , the script is working great, just need the rollover script.

  2. #2
    Join Date
    Aug 2006
    Posts
    239
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    just instead of <a href="javascript:ajaxpage()">blah</a> use onmouseover="ajaxpage()" event for the "tabs"

  3. #3
    Join Date
    Feb 2007
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    can u write out how it should be. i am not script savvy. doing something wrong.

    thanks

  4. #4
    Join Date
    Aug 2006
    Posts
    239
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    Almost good but instead of:
    Code:
    <td><a href="javascript:ajaxpage('/menu.html', 'rightcolumn');" target="_top"
    onclick="MM_nbGroup('down','group1','indexsbtop','/images/index_sb_click.jpg',1)"
    onmouseover="MM_nbGroup('over','indexsbtop','/images/index_sb_bottom.jpg','/images/index_sb_click.jpg',1)" onmouseout="MM_nbGroup('out')"><img 
    src="/images/index_sb_top.jpg" name="indexsbtop" border="0" /></a></td>
    you can do:
    Code:
    <td><img src="/images/index_sb_top.jpg" name="indexsbtop" border="0"
    onclick="MM_nbGroup('down','group1','indexsbtop','/images/index_sb_click.jpg',1)"
    onmouseover="ajaxpage('/menu.html', 'rightcolumn');MM_nbGroup('over','indexsbtop','/images/index_sb_bottom.jpg','/images/index_sb_click.jpg',1)"
    onmouseout="MM_nbGroup('out')" /></td>

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
  •