Results 1 to 13 of 13

Thread: web/js question for you websperts!

  1. #1
    Rear Admiral Lower Half jujubees's Avatar
    Join Date
    Aug 2000
    Location
    Californication
    Posts
    2,060

    Question web/js question for you websperts!

    So I'm working on my department's site. There are lots of services, subdivisions, etc., in my dept so the head honcho wants it all available from the front page.

    At this point, we've got flyout menu's, but sometimes they're SOOO long that he wants scrollbars on the suckers. I've never seen that and have no idea where to start. Any ideas?

    Thanks in advance for any help!
    You could have it all
    My empire of dirt

  2. #2

    Re: web/js question for you websperts!

    Originally posted by jujubees
    So I'm working on my department's site. There are lots of services, subdivisions, etc., in my dept so the head honcho wants it all available from the front page.

    At this point, we've got flyout menu's, but sometimes they're SOOO long that he wants scrollbars on the suckers. I've never seen that and have no idea where to start. Any ideas?

    Thanks in advance for any help!
    By flyout menus you mean "popups" right?
    It would help if I could see a screenshot of what you currently have.

  3. #3
    Ruler-Of-All-Things-Beer BrewMaster's Avatar
    Join Date
    Dec 2000
    Location
    Pasadena, CA
    Posts
    10,249
    Sounds like your boss needs a good kick in the face. I hate it when people demand unnecessary things from IT and Web mamagement teams. The site is just going to be cluttered and he'll blame it on you even though it was his stupid-ass idea.

    People, man. People... They kill me.

  4. #4
    Lieutenant Junior Grade
    Join Date
    Oct 2001
    Location
    Antarctic Circle =)
    Posts
    134

    Re: web/js question for you websperts!

    Originally posted by jujubees
    So I'm working on my department's site. There are lots of services, subdivisions, etc., in my dept so the head honcho wants it all available from the front page.

    At this point, we've got flyout menu's, but sometimes they're SOOO long that he wants scrollbars on the suckers. I've never seen that and have no idea where to start. Any ideas?

    Thanks in advance for any help!
    Is the site viewable from the internet or is it an intranet only?
    There might be some ways around it.

  5. #5
    Rear Admiral Lower Half jujubees's Avatar
    Join Date
    Aug 2000
    Location
    Californication
    Posts
    2,060
    DF, I wish I actually had any input on this, but I don't. So funky flyouts it is.

    Brew, my boss is actually pretty cool, and he won't blow his top if this doesn't work out (it still SUCKS tho).

    penguin, the site *is* viewable on the net, but ummm ...

    Anyhow, here's a screenshot of the menu:

    You could have it all
    My empire of dirt

  6. #6
    Originally posted by BrewMaster
    Sounds like your boss needs a good kick in the face. I hate it when people demand unnecessary things from IT and Web mamagement teams. The site is just going to be cluttered and he'll blame it on you even though it was his stupid-ass idea.

    People, man. People... They kill me.
    That's why people like me have jobs. We make sure the UI is designed well and incorporates what clients want and its easy to use. Nothing against you web developers out there...but I find it amusing how someone can call themselves a web designer without any formal design experience.

  7. #7
    Originally posted by jujubees

    Anyhow, here's a screenshot of the menu:

    I noticed that a lot of the links can fall under a general category. Like accounting/billing, emails, etc...What you can do is have a general header (like emails) then when a user clicks/rollsover, have a dropdown menu with all the features under that category. That way the user doesn't have to load a new page just to access a certain feature.

    Hope this link helps...
    http://javascript.internet.com/gener...down-menu.html

  8. #8
    Rear Admiral Lower Half jujubees's Avatar
    Join Date
    Aug 2000
    Location
    Californication
    Posts
    2,060
    Originally posted by Jihforce
    I noticed that a lot of the links can fall under a general category. Like accounting/billing, emails, etc...What you can do is have a general header (like emails) then when a user clicks/rollsover, have a dropdown menu with all the features under that category. That way the user doesn't have to load a new page just to access a certain feature.
    I wish I could, but sadly, that's how he wants the menu to be. My job isn't to redesign it for usability, but to just toss some scrollbars on the right so that the menu doesn't take up the whole page. I guess the "creative freedom" that I was promised only involved choosing colors.
    You could have it all
    My empire of dirt

  9. #9
    Originally posted by jujubees
    I wish I could, but sadly, that's how he wants the menu to be. My job isn't to redesign it for usability, but to just toss some scrollbars on the right so that the menu doesn't take up the whole page. I guess the "creative freedom" that I was promised only involved choosing colors.
    Dag nabbit! That sucks! hmmm try this link.

    http://developer.netscape.com/docs/e...ml/scrollable/

    don't know if it will work for sure, but its worth a try. I'll post some more if I find anything.

  10. #10
    Rear Admiral Lower Half jujubees's Avatar
    Join Date
    Aug 2000
    Location
    Californication
    Posts
    2,060
    Allow me to throw a few more roadblocks in your way.

    I also have to make this cross-browser compliant. As far as I know, DHTML was never standardized so Netscape & ie each used proprietary coding. This particular one works for NS but not ie.

    I got a request for a peek at the code so here it is:

    Code:
    <script language="JavaScript">
    <!--
    function LoadMenus() {
      if (window.menu_0) return;
      window.menu_0 = new Menu("root",287,17,"Verdana, Arial, Helvetica, sans-serif",10,"#000000","#ffffff","#ffcc66","#000084");
      menu_0.addMenuItem("Account Services and Billing Issues","location='new.html'");
      menu_0.addMenuItem("Billing - New Number","location='new.html'");
      menu_0.addMenuItem("Billing - Change to Information","location='new.html'");
      menu_0.addMenuItem("Corporate and Operational Systems Accounts","location='new.html'");
      menu_0.addMenuItem("Corporate &amp; Operational Systems Information","location='new.html'");
      menu_0.addMenuItem("Directory Corrections","location='new.html'");
      menu_0.addMenuItem("Production Control","location='new.html'");
      menu_0.addMenuItem("Records Management","location='new.html'");
      menu_0.addMenuItem("Sybase Accounts","location='new.html'");
      menu_0.addMenuItem("Technical Acquisition Support","location='new.html'");
      menu_0.addMenuItem("U-wide Records &amp; Information Practices Policies","location='new.html'");
       menu_0.hideOnMouseOut=true;
    } // LoadMenus()
    
    //-->
    </script>
    <script language="JavaScript1.2" src="menu.js"></script>
    with this in the body:

    Code:
    <a href="#" onMouseOut="startTimeout();"  onMouseOver="window.showMenu(window.menu_0,190,44);">
    <img src="1_r2_c1.gif" width="190" height="15" border="0"></a>
    You could have it all
    My empire of dirt

  11. #11
    Fleet Admiral hapoo's Avatar
    Join Date
    Jan 2000
    Location
    742 Evergreen Terrace, Springfield USA
    Posts
    9,276
    use a javascript function to check what browser the viewer is running and have it display the correct menu system.

  12. #12
    the lemonizer sho.gun's Avatar
    Join Date
    Apr 2001
    Location
    Calabasas, CA
    Posts
    5,374
    Hey Jujubees, try this code: Code

    It's cross browser compatible and it even works for NS6.

  13. #13
    Rear Admiral Lower Half jujubees's Avatar
    Join Date
    Aug 2000
    Location
    Californication
    Posts
    2,060
    Thanks for all of your suggestions, guys!

    I went back and showed them an example of a menu that was tooooooo long, and they agreed it was too garish so they consolidated the menu's, making them fit on an average screen. Yay!

    Something tells me, though, that the rest of this redesign is going to be an uphill battle ...
    You could have it all
    My empire of dirt

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
  •