Trouble with iWeb code snippet for drop down menu

Hello,
So, I'm having a bit of trouble figuring this out and it goes beyond my knowledge, to be honest. I'm working on a website for someone and when viewed in Safari for Mac or iPad or even iPhone, it all works out great. But, when viewed in any other browser for Mac or Windows, the drop down doesn't display the "menu heading," only what should be the first drop down selection. Not only that, that page now becomes "unselectable" and more or less dead.
Here is what it should read, and does on Safari:
Rates and Hours
FAQ - Yoga
FAQ - Reiki
FAQ - Massage
On all other browsers, it displays the FAQ - Yoga option as the "title" and only displays the other two options. So, is this something that can be fixed in the code snippet or is what I'm seeing a more involved HTML issue that would require actual skills to fix? Any help or direction would be greatly appreciated because I'd love to get this knocked out and also pick something up in addition. If I have to edit the actual HTML pages themselves I could do that as well; I've got an editor and have done that for my own site when needed. Anyway, thank you very much in advance!
Her
<html>
<title></title>
<head>
<script>
<!--
function land(ref, target)
lowtarget=target.toLowerCase();
if (lowtarget=="_self") {window.location=loc;}
else {if (lowtarget=="_top") {top.location=loc;}
else {if (lowtarget=="_blank") {window.open(loc);}
else {if (lowtarget=="_parent") {parent.location=loc;}
else {parent.frames[target].location=loc;};
function jump(menu)
ref=menu.choice.options[menu.choice.selectedIndex].value;
splitc=ref.lastIndexOf("*");
target="";
if (splitc!=-1)
{loc=ref.substring(0,splitc);
target=ref.substring(splitc+1,1000);}
else {loc=ref; target="_self";};
if (ref != "") {land(loc,target);}
//-->
</script>
</head>
<body>
<style type="text/css">
<!--
.combobox {
background-color: #fef3e2;
color: #463c3c;
font-size: 13pt;
font-family: optima;
font-weight: normal;
font-style: none;
-->
</style>
<form action="dummy" method="post"><select name="choice" size="1" class="combobox" onChange="jump(this.form)"
<option value="">Rates, Hours, Reservations</option>
<option value="http://yogareikimassage.com/MG/Rates.html*_top">Rates and Hours</option>
<option value="http://yogareikimassage.com/MG/FAQ_-_Yoga.html*_top">FAQ and Reserve - Yoga</option>
<option value="http://yogareikimassage.com/MG/FAQ_-_Reiki.html*_top">FAQ and Reserve - Reiki</option>
<option value="http://yogareikimassage.com/MG/FAQ_-_Massage.html*_top">FAQ and Reserve - Massage</option>
<option value="http://yogareikimassage.com/MG/FAQ_-_Personal_Training.html*_top">FAQ and Reserve - Training</option>
</select>
</form>
</body>
</html>

Here is what it should read, and does on Safari:
Rates and Hours
FAQ - Yoga
FAQ - Reiki
FAQ - Massage
No, it shouldn't and it doesn't. It should look like :
Rates, Hours, Reservations
Rates and Hours
FAQ - Yoga
FAQ - Reiki
FAQ - Massage
FAQ and Reserve - Training
Here's the correct part :
<select>
          <option value="">Rates, Hours, Reservations</option>
          <option value="http://yogareikimassage.com/MG/Rates.html*_top">Rates and Hours</option>
          <option value="http://yogareikimassage.com/MG/FAQ_-_Yoga.html*_top">FAQ and Reserve - Yoga</option>
          <option value="http://yogareikimassage.com/MG/FAQ_-_Reiki.html*_top">FAQ and Reserve - Reiki</option>
          <option value="http://yogareikimassage.com/MG/FAQ_-_Massage.html*_top">FAQ and Reserve - Massage</option>
          <option value="http://yogareikimassage.com/MG/FAQ_-_Personal_Training.html*_top">FAQ and Reserve - Training</option>
</select>
The <select> item was missing. And if you don't want the first line in the menu (Rates, Hours, Reservations) then don't enter it in the first place.
BTW, it's not a dropdown menu. It's a selection list in a form.

Similar Messages

  • Code placement for drop down menu within an animated button

    I have a main menu comprised of 7 buttons; 6 of which are all
    straight forward with an animation. (The animation is that when the
    buttons are rolled over the button extends itself out to the right.
    On the rollout the button returns to its original state.) The 6 all
    function fine.
    The 7th menu button is the same idea but with the edition of
    a two button drop down menu that appears when the main button is
    rolled over. The roll over part is fine. My problem is moving the
    cursor off the main button to get to the sub-menu items without
    having them disappear once the cursor if off the main 7th button.
    Within the time line of the 7th button (all of the buttons
    are movie clip buttons) I put an invisible button, removing the
    sections over both the main button and the sub buttons. I have
    tried the following:
    (I should point out that the labels within the button for the
    animation are an _up, _over and _out states...the buttons animate
    out in the _over label and animate back to the original position in
    the _out label,)
    The code and where I have (unsuccessfully) tried placing it
    are as follows:
    1.) On the invisible button itself (within the main button):
    on (rollOver) {
    gotoAndPlay("_out");
    2.) On the Actions layer (within the main button):
    invisible_btn.onRollOver = function () {
    gotoAndPlay("_out");
    3.) On the Actions layer (on the main timeline...which is
    where the code for the other 6 buttons is and running as should):
    btnMusic_mc.invisible_btn.onRollOver = function () {
    btnMusic_mc.gotoAndPlay("_out");
    4.) Just a slight variation of #3 (still on the Actions layer
    of the main timeline):
    btnMusic_mc.invisible_btn.onRollOver = function () {
    brnMusic_mc.invisible_btn.gotoAndPlay("_out");
    The result for all four of these options has been the same.
    In rolling over the main button (btnMusic_mc) it does animate out
    as it should, exposing the two sub buttons. But moving the cursor
    off the btnMusic_mc neither allows me to reach the sub buttons nor
    does the btnMusic_mc animate back to its first position (as it
    should). It just snaps back into that position.
    Clearly I am missing something here. Any thoughts would be
    appreciated.

    Here is what it should read, and does on Safari:
    Rates and Hours
    FAQ - Yoga
    FAQ - Reiki
    FAQ - Massage
    No, it shouldn't and it doesn't. It should look like :
    Rates, Hours, Reservations
    Rates and Hours
    FAQ - Yoga
    FAQ - Reiki
    FAQ - Massage
    FAQ and Reserve - Training
    Here's the correct part :
    <select>
              <option value="">Rates, Hours, Reservations</option>
              <option value="http://yogareikimassage.com/MG/Rates.html*_top">Rates and Hours</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Yoga.html*_top">FAQ and Reserve - Yoga</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Reiki.html*_top">FAQ and Reserve - Reiki</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Massage.html*_top">FAQ and Reserve - Massage</option>
              <option value="http://yogareikimassage.com/MG/FAQ_-_Personal_Training.html*_top">FAQ and Reserve - Training</option>
    </select>
    The <select> item was missing. And if you don't want the first line in the menu (Rates, Hours, Reservations) then don't enter it in the first place.
    BTW, it's not a dropdown menu. It's a selection list in a form.

  • Since I upgraded to os x maverick when I try to close with cmd + q from the drop-down menu the app store and I IMOVE reopen continuously.

    since I upgraded to os x maverick when I try to close with cmd + q from the drop-down menu the app store and I IMOVE reopen continuously.

    2 GB of RAM is pretty tight. I imagine that's at the very low end of what Yosemite wants, which could slow things down.
    As far as scroll direction, you can always change it in the trackpad settings. Unsure why it got flipped, but you can fix it in about 5 seconds. Choose "natural" (or don't) depending on how you like it.

  • I'm trying to find a word processing app that is comparable with Microsoft word, that supports drop down menu's for filling out forms. Any recommendations?

    I'm trying to find a word processing app that is comparable with Microsoft Word, but can use drop down menu's to fill in forms? Any suggestions

    Microsoft Word for Mac
    OpenOffice
    NeoOffice
    LibreOffice

  • Email form script with custom text field and drop-down menu?

    Hey, I'm building a website in iWeb - http://dl.dropbox.com/u/19707357/Website/craftpackage.html
    And I was looking for a script that could possibly send an email to me with the info a user chooses from/puts in 1. dropdown menu 2. text field 3. another text field. I'd be awesome if the fields could have a custom background or a transparent background.The drop-down menu could have any background, but it would be awesome if it could be made with custom images !

    Basic question.
    What have you yourself done to find out?
    Nothing?
    Start here :
    http://www.google.com/search?q=how+to+make+a+mail+form
    http://www.google.com/search?q=dropdown+menu+with+transparent+background
    Unfortunately, it has no dropdown menu :
    http://www.wyodor.net/blog/archives/2010/01/entry_301.html
    Btw, dropdown menus in forms at select menus. These are not the same.
    http://www.google.com/search?q=select+menu+form
    http://http://www.w3schools.com/html/html_forms.asp
    So start practicing and once everything works the way it should, display it in a html snippet.

  • Auto-fill for drop down menu

    I fill a drop-down menu with 200+ part numbers. How can i implement the capability
    to type the first few numbers/letters to jump to the nearest part number
    beginning with my input?

    nathan wrote:
    > I can key focus the control and it opens when i hit the space bar. I type
    > the complete part number i can see on the list and hit enter. It picks the
    > first selection on the list. I doesn't select the one i type. Does it work
    > for anyone else?
    >
    > Ernie Howard wrote:
    > >Try: Key focus the control, hit the space bar, start typing, hit return.>>nathan
    > wrote> >> Greg McKaskle wrote> >> I fill a
    > drop-down menu with 200+ part numbers. How can i implement the>> capability>>
    > to type the first few numbers/letters to jump to the nearest>> part number>>
    > beginning with my input?>>Any ring or menubar menu should support>> type
    > ahead when it gets key f
    ocus.>The menu will of course work better if>> it
    > is sorted.>>Greg McKaskle>> I'm using Labview 5.0 with the menu ring. It
    > is not supporting type ahead.>> It gets the focus and the only helpful function
    > is the 'page down' key. Any>> ideas?
    I think the problem may be with the speed that the comparisons are made.
    If I type as fast as I can, I can get to the correct Number. If I pause for
    very long (1/2 sec ??? ) during the typing it will stall out at the last match.
    I am not sure if there are any settings for the keyboard (like typematic rate)
    that would help any. Since most part numbers (at least the ones I use) are
    in sequence this may be a real problem.
    Ex.
    323-1234-001
    323-1234-002
    It would be very difficult for me to get to the -002
    I can type 30 wpm but the words are gibberish !!
    Kevin Kent
    Attachments:
    Kevin.Kent.vcf ‏1 KB

  • Pass a url variable to javascript for drop down menu

    Hello,
    I'm in over my head as far as javascript goes. This is what I
    am trying to do. I have this URL...
    http://www.grasshorse.com/prod2.cfm?SortBy=all&ProdAbbr=shm
    I want to take the variable for ProdAbbr which in this case
    is "shm" and make that a variable in javascript. So that I can add
    the variable to a dynamic link I'm using for a drop down menu.
    mm_menu_0520211545_0.addMenuItem("All Departments","location='prod.cfm?SortBy=all&ProdAbb r=eval(ProdAbbr)'");
    I really have no clue what to do. I haven't hardly used
    javascript at all and I'm looking for some charity. Does anyone
    have any ideas on how I can do this?
    Thanks
    Steve
    Any insight is greatly appreciated.

    jawwinker wrote:
    > Hello,
    > I'm in over my head as far as javascript goes. This is
    what I am trying to
    > do. I have this URL...
    >
    > <a target=_blank class=ftalternatingbarlinklarge
    > href="
    http://www.grasshorse.com/prod2.cfm?SortBy=all&ProdAbbr=shm
    >
    > I">
    http://www.grasshorse.com/prod2.cfm?SortBy=all&ProdAbbr=shm
    >
    > I</a> want to take the variable for ProdAbbr which
    in this case is "shm" and
    > make that a variable in javascript. So that I can add
    the variable to a
    > dynamic link I'm using for a drop down menu.
    >
    >
    mm_menu_0520211545_0.addMenuItem("All Departments","location='prod.cfm?Sort
    > By=all&ProdAbbr=eval(ProdAbbr)'");
    mm_menu_0520211545_0.addMenuItem("All Departments","location='prod.cfm?Sort
    By=all&ProdAbbr='"+ProdAbbr+"'");
    Mick

  • Creating of a badi for drop down menu in ADobe form

    Hi ,
    Can you let me know what FM ( Function module ) should i use
    for creating a  drop down menu for a field in the Adobe form in the
    Badi ..
    This Badi is attached to the field in the smart form..
    Or a F4 help created  in the Badi  will serve the purpose...( it will act
    as a drop down menu for the field.. )..
    Let me know as soon as possible ..
    Thanks .
    Om

    Drop down menus, loke some other festures, aren’t available at that time.
    But there is a fine widget to achieve that:
    Forms+ Bundle Widget – Widgets.Mu

  • - Looking for Drop Down menu script w/ semi-transparent backgrounds...

    Looking for a dropdown menu script that will allow
    semi-transparent
    backgrounds (so we can partly see what the list is displaying
    over).
    I've Googled this to death using all the obvious keywords,
    but have yet to
    find what I'm looking for.
    Thanks.

    Yes. I understand and agree. Good point.
    Thanks.
    Al Sparber - PVII
    http://www.projectseven.com
    Extending Dreamweaver - Nav Systems | Galleries | Widgets
    Authors: "42nd Street: Mastering the Art of CSS Design"
    "T.Pastrana - 4Level" <[email protected]> wrote in message
    news:[email protected]...
    >I posted mainly for the benefit of Reese, I know you know
    this.
    >
    >
    > --
    > Best Regards,
    > ..Trent Pastrana
    > www.fourlevel.com
    >
    >
    >
    >
    >
    >
    > "Al Sparber- PVII" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Actually, it's not an error. But we do happen to
    have it in a CC on
    >> that page because the last time I posted that page
    on this forum it
    >> was criticized for "failing" the W3C CSS validator.
    >>
    >>
    http://www.projectseven.com/foxy.gif
    >>
    >> The Firefox console simply would report it as a
    warning - not an
    >> error. It would have no affect on the page. But
    thanks for pointing
    >> that out.
    >>
    >> --
    >> Al Sparber - PVII
    >>
    http://www.projectseven.com
    >> Extending Dreamweaver - Nav Systems | Galleries |
    Widgets
    >> Authors: "42nd Street: Mastering the Art of CSS
    Design"
    >>
    >>
    >>
    >>
    >> "T.Pastrana - 4Level" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> If you want your page to validate you might want
    to separate the
    >>> properties. Some modern browsers like Firefox
    will throw an error
    >>> with the filter property.
    >>>
    >>> #menu li {
    >>> opacity: 0.85;
    >>> }
    >>>
    >>> <!--[if IE]><style
    type="text/css">#menu li {filter:
    >>>
    alpha(opacity=85);}</style><![endif]-->
    >>>
    >>>
    >>> --
    >>> Best Regards,
    >>> ..Trent Pastrana
    >>> www.fourlevel.com
    >>>
    >>>
    >>>
    >>>
    >>> "Al Sparber- PVII"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> If, for example, you are using an unordered
    list for your menu, set
    >>>> opacity on the LI, like so:
    >>>>
    >>>> #menu li {
    >>>> opacity: 0.85;
    >>>> filter: alpha(opacity=85);
    >>>> }
    >>>>
    >>>> As far as I know, there are no
    "off-the-shelf" menu tools of worth
    >>>> that offer this as an automatic option. You
    should pick yourself a
    >>>> good menu system then set opacity on the
    relevant element. The
    >>>> menu "script" or "system" really has nothing
    to do with it.
    >>>>
    >>>> If you need a good base menu system, you can
    find free ones and
    >>>> commercial ones on our site. Here is an
    example of one with
    >>>> transparency:
    >>>>
    >>>>
    http://www.projectseven.com/products/menusystems/pmm/css_tweaks/opacity/
    >>>>
    >>>>
    >>>>
    >>>> --
    >>>> Al Sparber - PVII
    >>>>
    http://www.projectseven.com
    >>>> Extending Dreamweaver - Nav Systems |
    Galleries | Widgets
    >>>> Authors: "42nd Street: Mastering the Art of
    CSS Design"
    >>>>
    >>>>
    >>>>
    >>>>
    >>>> "Reese" <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> Looking for a dropdown menu script that
    will allow
    >>>>> semi-transparent backgrounds (so we can
    partly see what the list
    >>>>> is displaying over).
    >>>>>
    >>>>> I've Googled this to death using all the
    obvious keywords, but
    >>>>> have yet to find what I'm looking for.
    >>>>>
    >>>>> Thanks.
    >>>>>
    >>>>
    >>>
    >>>
    >>
    >
    >

  • Trying to change my phone number. screen says to choose area code from drop down menu but it is blank and won't let me go further

    I am trying to change my phone number. Screen says to choose area code & prefix from drop down menu.  Drop down is blank.  Will not let me go further

        Hello llamamama9,
    Yikes! I'm sorry to learn you are having issues with changing your mobile number. I understand how important this options is. I'm dedicated to making sure this is completed once and for all. I know some time has passed since your original post, have you changed your mobile number? If not, please visit http://vz.to/V668o0 If you are still having issues after following this guide, please feel free to reach out to us, thanks!
    MatthewS_VZW
    VZW Support
    Follow us on Twitter @VZWSUPPORT

  • Drop Down menu for navigation bar

    I created a site a couple years ago (with GoLive) with a
    navigation bar with rollover states. I would like to create
    something very similar to it now in Dreamweaver CS3 but with the
    addition of a drop down menu for just a couple of the navigation
    icons. I have been told by Adobe tech support on the phone that I
    need some custom coding to do this.
    To see what the navigation bar looks like now go to
    www.aimeeastvillage.com
    I DON"T need the drop down choices to be in a whimsical font.
    I just don't want to have to direrct the reader to go to an
    additional page. PLEASE tell me this is possible for a relative
    beginner! Thanks.

    Check the uberlink and MacFly tutorials at PVII -
    http://www.projectseven.com/
    and the Navbar tutorial/articles at Thierry's place
    http://tjkdesign.com/articles/dropdown/
    Or this one (more recent article):
    http://tjkdesign.com/articles/Pure_CSS_Dropdown_Menus.asp
    Or to get it done fast, go here -
    http://www.projectseven.com/tutorials/navigation/auto_hide/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Purple Mango" <[email protected]> wrote in
    message
    news:fpv17r$gsp$[email protected]..
    >I created a site a couple years ago (with GoLive) with a
    navigation bar
    >with
    > rollover states. I would like to create something very
    similar to it now
    > in
    > Dreamweaver CS3 but with the addition of a drop down
    menu for just a
    > couple of
    > the navigation icons. I have been told by Adobe tech
    support on the phone
    > that
    > I need some custom coding to do this.
    > To see what the navigation bar looks like now go to
    > www.aimeeastvillage.com
    > I DON"T need the drop down choices to be in a whimsical
    font. I just don't
    > want to have to direrct the reader to go to an
    additional page. PLEASE
    > tell me
    > this is possible for a relative beginner! Thanks.
    >

  • Default values for dependent drop down menu

    Hi!
    I did create an insert record page that lets the user put in information using text fields. In addition the form has a dependent drop down menu for a category and then depending on the chosen category, the user is presented with choices in a second drop down menu for subcategories.
    The insert of the record itself works fine.
    The records are then listed in a table. A link to a details page should then list all fields of a chosen record. I have another form sporting them dependent drop down menus again. Since I retrieve a record from the database I would like to have the drop down menus default to the values stored in the database.
    But whatever I tried the menus always default to the respective first entries in each menu.
    I tried to use the "select value equal to" field in the "insert record" for the category and the "Default detail value" field in the dependent drop down item for the subcategory field.
    Any pointers anybody?
    Thanks in advance
    Juergen

    Hi there I cannot understand your request fully but I think I understand....
    I think I have done nearly exactly what you need
    I will try to explain
    for a start I am working on a art gallery site that has many different artists and many different paintings
    I am able to add a new artist and have that artist name appear automatically in a dropdown menu on my add painting form page so that when I add a new painting I do not have to type the arrtists name every time
    I am not sure this is what you need but I think maybe....
    (i have another site that displays different categories of jewellry... with a form that has same dropdown and can choose product category.... but the process is the same)
    the way I did it was to first create an 'artist_info' table in my database and an 'add artist page' pretty simple
    Then an painting_pnt table in my database and an 'add painting' page with a form that contains a dropdown menu that is dynamically populated from the artist_infotable... label from the artist_name field value from the artist_id field so the form uses two recordsets.......
    Then in my painting_pnt table I have a field that stores the artist_id
    So when I add a new artist..... the name automatically appears in the dropdown menu when I add a new painting I choose the artist name and then later I can filter recordsets on my detail pages using the id_artist....
    there is a lot more to it as well but that should get you started
    I hope this helps
    If you have any questions at all I will try to explain better
    takiteasy

  • CSS Drop down menu; how to align the right edge of drop down and parent menu?

    Hello everyone,
    I have a drop-down menu that is currently working well.
    The only change I need to make is to have the right edge of the  drop-down menu to align with the right edge of the parent menu. When you  hover over the menu, it currently "drops" down and to the right, with  the left edges aligned.
    I want the menu to "drop" down and to the left, so the right edges are aligned.
    I have tried fiddling with floats and absolute/relative positioning. I'm not sure what needs to be changed.
    Any help you can provide is greatly appreciated! I'm learning via "cut and paste", so please go easy on any terminology you may use.
    Thank you!
    Here is my code:
    .chromestyle{
         width: 100%;
         font-weight: bold;
         float: left;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width: 100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: right; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    width: 200px;
    visibility: hidden;
    .dropmenudiv a{
    width: auto;
    display: block;
    text-indent: 3px;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 2px 5px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;

    Try this:
    .chromestyle{
         font-weight: bold;
         height: 29px;
    .chromestyle:after{ /*Add margin between menu and rest of content in Firefox*/
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    .chromestyle ul{
    border: 0px solid #BBB;
    width:100%;
    background: url(chromebg.gif) center center repeat-x; /*THEME CHANGE HERE*/
    padding: 4px 0;
    margin: 0;
    text-align: left; /*set value to "left", "center", or "right"*/
    .chromestyle ul li{
    display: inline;
    .chromestyle ul li a{
    color: #000000;
    padding: 4px 7px;
    margin: 0;
    text-decoration: none;
    border-left: 1px solid #DADADA;
    .chromestyle ul li a:hover, .chromestyle ul li a.selected{ /*script dynamically adds a class of "selected" to the current active menu item*/
    background: url(chromebg-over.gif) center center repeat-x; /*THEME CHANGE HERE*/
    /* ######### Style for Drop Down Menu ######### */
    .dropmenudiv{
    position:absolute;
    top: 0;
    border: 1px solid #BBB; /*THEME CHANGE HERE*/
    border-bottom-width: 0;
    font:normal 12px Verdana;
    line-height:18px;
    z-index:100;
    background-color: white;
    visibility: hidden;
    text-align:left;
    .dropmenudiv a{
    width: auto;
    display: block;
    border-bottom: 1px solid #BBB; /*THEME CHANGE HERE*/
    padding: 3px;
    text-decoration: none;
    font-weight: bold;
    color: black;
    * html .dropmenudiv a{ /*IE only hack*/
    width: 100%;
    .dropmenudiv a:hover{ /*THEME CHANGE HERE*/
    background-color: #0000ff;
    color: #fff200;
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • Updating drop down menu depending on another drop down menu

    Hi!
    I'm making this questionnaire, and it has 10 questions (q01 to q10).
    Each question has 4 sub-questions with an associated drop-down menu (q01L1 to q01L4, q02L1 to q02L4, etc.).
    The values available to select from the drop-down menu are: 1, 2, 3, and 4.
    For each sub-question, the user has to select a value (1, 2, 3, or 4), and that value can only be selected once for each question as a whole.
    I suppose that JavaScript will be able to remove, update, or rebuild the other drop-down menus according to the answer given to each sub-question. How can it be achieved? I have no idea how to make that happen. Could you help?
    Thanks.
    For example :
    This is what the user actually see BEFORE filling the question :
    Question 1 : When disagreeing on points of view, I get influenced by
    [Drop-down menu 1] : The tone/volume of voice of the person with whom I speak.
    [Drop-down menu 2] : My capability or incapability to understand the point of view of the person with whom I speak.
    [Drop-down menu 3] : The logic and the rationale on which the person with whom I speak bases his/her opinion.
    [Drop-down menu 4] : Whether or not the person with whom I speak is sensible to what I may feel.
    The following is for you to visualise the way I named the fields in the PDF questionnaire :
    q01 : When disagreeing on points of view, I get influenced by
    q01L1 {1,2,3,4} : The tone/volume of voice of the person with whom I speak.
    q01L2 {1,2,3,4} : My capability or incapability to understand the point of view of the person with whom I speak.
    q01L3 {1,2,3,4} : The logic and the rationale on which the person with whom I speak bases his/her opinion.
    q01L3 {1,2,3,4} : Whether or not the person with whom I speak is sensible to what I may feel.
    q01 = the name I gave to the question 1
    L1 = the name I gave to the sub-question 1
    q01L1 = the name I gave to the drop-drop menu of the sub-question 1 of the question 1
    {1,2,3,4} = the answers the user can select from the menu.
    The user can answer :
    4 : The tone/volume of voice of the person with whom I speak.
    2 : My capability or incapability to understand the point of view of the person with whom I speak.
    1 : The logic and the rationale on which the person with whom I speak bases his/her opinion.
    3 : Whether or not the person with whom I speak is sensible to what I may feel
    But cannot answer :
    4 : The tone/volume of voice of the person with whom I speak.
    2 : My capability or incapability to understand the point of view of the person with whom I speak.
    1 : The logic and the rationale on which the person with whom I speak bases his/her opinion.
    4 : Whether or not the person with whom I speak is sensible to what I may feel
    This is where the JavaScript comes into play. What can be done to remove, update, or rebuild the other drop-down menus according to the answer given to each sub-question?
    If the user answers 4 to q01L1, the 3 other drop-down menus should look like this
    4 : The tone/volume of voice of the person with whom I speak.
    q01L2 {1,2,3} : My capability or incapability to understand the point of view of the person with whom I speak.
    q01L3 {1,2,3} : The logic and the rationale on which the person with whom I speak bases his/her opinion.
    q01L3 {1,2,3} : Whether or not the person with whom I speak is sensible to what I may feel.
    And then, if the user answers 2 to q01L2, the 2 last drop-down menus should look like this
    4 : The tone/volume of voice of the person with whom I speak.
    2 : My capability or incapability to understand the point of view of the person with whom I speak.
    q01L3 {1,3} : The logic and the rationale on which the person with whom I speak bases his/her opinion.
    q01L3 {1,3} : Whether or not the person with whom I speak is sensible to what I may feel.
    And so on.
    Message was edited by: einsteinbqat

    I'm sure that question is an FAQ in whatever language you're asking about. But you should really find the forum for that language. This is the forum for Java programming and that ain't Java.

  • Multiple Filters Mode Checkboxes = Drop-Down Menu

    How to change the Multiple Filters Mode Checkboxes to the Drop-Down Menu?
    Here ist a adobe-lab-example:
    http://labs.adobe.com/technologies/spry/samples/data_region/MultipleFiltersModeSample.html
    The idea is a spry-dataset with 3 Multiple Filter Mode Drop-Down Menu's.
    As example:
    the first Drop-Down Menu with "None", "Glazed", "Sugar"
    the second with "Powdered Sugar", "Chocolate with Sprinkles"
    the third with "Chocolate", "Maple"
    Thanks

    This will get you started
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Untitled Document</title>
    <script src="SpryAssets/xpath.js"></script>
    <script src="SpryAssets/SpryData.js"></script>
    <script src="SpryAssets/SpryDataExtensions.js"></script>
    <script>
    var dsMusic = new Spry.Data.XMLDataSet("alles.xml", "state/cities/city");
    function ff20er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 2 ? row : null; };
    function ff30er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 3 ? row : null; };
    function ff40er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 4 ? row : null; };
    function ff50er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 5 ? row : null; };
    function ff60er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 6 ? row : null; };
    function ff70er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 7 ? row : null; };
    function ff80er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 8 ? row : null; };
    function ff90er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 1 && d == 9 ? row : null; };
    function ff2000er(ds, row, index){ var c = row.jahr.charAt(0); var d = row.jahr.charAt(2); return c == 2 && d >= 0 ? row : null; };
    function ZeitFilter(f) {
        dsMusic.removeAllFilters(true);
        if (f=='ff20er') dsMusic.addFilter(ff20er, true);
        if (f=='ff30er') dsMusic.addFilter(ff30er, true);
        if (f=='ff40er') dsMusic.addFilter(ff40er, true);
        if (f=='ff50er') dsMusic.addFilter(ff50er, true);
        if (f=='ff60er') dsMusic.addFilter(ff60er, true);
        if (f=='ff70er') dsMusic.addFilter(ff70er, true);
        if (f=='ff80er') dsMusic.addFilter(ff80er, true);
        if (f=='ff90er') dsMusic.addFilter(ff90er, true);
        if (f=='ff2000er') dsMusic.addFilter(ff2000er, true);
    </script>
    </head>
    <body>
    <select onchange="ZeitFilter(this.value);">
      <option value="" selected="selected">Zeit:</option>
      <option value="ff20er">20er</option>
      <option value="ff30er">30er</option>
      <option value="ff40er">40er</option>
      <option value="ff50er">50er</option>
      <option value="ff60er">60er</option>
      <option value="ff70er">70er</option>
      <option value="ff80er">80er</option>
      <option value="ff90er">90er</option>
      <option value="ff2000er">ab 2000</option>
    </select>
    <div spry:region="dsMusic">
      <table>
        <tr>
          <th spry:sort="name">Name</th>
          <th spry:sort="category">Category</th>
          <th spry:sort="jahr">Jahr</th>
          <th spry:sort="lang">Lang</th>
        </tr>
        <tr spry:repeat="dsMusic">
          <td>{name}</td>
          <td>{category}</td>
          <td>{jahr}</td>
          <td>{lang}</td>
        </tr>
      </table>
    </div>
    </body>
    </html>
    It will still need some tweeking when you add the other filters.
    For some reason, IE did not show the data, haven't worked out why yet, but FF no problem.
    Cheers

Maybe you are looking for

  • Can't print through Time Capsule using Windows-operating computers

    I've just bought a time capsule 500GB and it's working fine. It backups my macbook every hour and I can easily print whatever file I want through my Canon iP1800 series, which is connect to WAN port of my time capsule. However, I have others 2 notebo

  • Is Audition 3.5 compatible with Windows 8.1 64-bit?

    Is Audition 3.5 compatible with Windows 8.1 64-bit?  If not, is there an upgrade that is compatible that does not require subscribing to Creative Cloud?  I only need the standalone software to edit my music.

  • Very urgent : 0 records for 0COSTELMNT_TEXT in RSA3

    hi guys, No records found for  0COSTELMNT_TEXT  & 0ACCOUNT_TEXT. It show 0 records after extraction and also in rsa3 in r/3 side. problem is with texts, attributes are loaded for the same. any ideas .... advance thanks

  • HR Related Question

    Dear All, i Dont know whether this is correct forum for this question or not. actually my question is that. in HR i m going through PA30 and enter one pernr. then i run this pernr for the infotype 2001 (Absenses) and create Absence hours : 4 then the

  • Why does snap to beat stop working halfway through a project?

    I've done everything I'm supposed to in terms of the settings, it was working in the beginning of the project and works on a brand new project, but no longer aligns properly on my current movie. Any thoughts of what might have happened? Is it because