Nasty Safari 5.1 problem with drop-downs on Lion

There appears to be a nasty bug in Safari on Lion related to certain types of drop-downs where clicking on the drop-down resets the entire page. I have already encountered it on several webpages. Here is a link to a webpage which shows this behavior.
http://www.sonos.com/login/
If you scroll to the bottom half and try to create a new account, you are unable to do so since the required Country value (via drop-down) cannot be set as it resets the page whenever you click or try to access it via keyboard. I guess it is good to keep Chrome and Firefox around for pages that Safari can't handle, but it would seem that this is something basic that Apple's automated test suites should have caught. Again, it does not happen with all drop-downs, only certain types.

I had the same problem with a site I developed. I found out how to fix the problem here: http://stackoverflow.com/questions/7165086/clicking-safari-5-1-select-menu-refre shes-page
It's a problem with using webfonts on select forms in the CSS. If you disable the webfont on select forms, the problem goes away. Hopefully, Apple fixes the problem soon since it's a major bug. It doesn't just reload the page but it logs you out if you're signed into the site.

Similar Messages

  • Safari 7.1 creates problems with drop down menus from some sites

    I blindly install Apple updates, but with Safari 7.1 I run into problems with the drop down menu of www.arcweb.com.  As this is my main client it is a big problem.  Any suggestions or solutions?
    thanks
    Jean

    Empty Caches.
    1. Safari > Preference > Advanced
        Checkmark the box for "Show Develop menu in menu bar".
        "Develop" menu will appear in the Safari menu bar.
        Click Develop and select "Empty Caches" from the dropdown.
    2. Quit Safari if open.
        Option click the "Go" menu in the Finder menu bar.
        Select "Library" and then "Caches".
        Look for the folder 'com.apple.Safari"
        Right click "com.apple.Safari" and select "Move to Trash"
        Relaunch Safari.

  • Problems with drop-down list: old references still in the model

    Hi,
    I am getting in troubles with a drop-down list. I configured it as dynamic list and I specified a RFC to get the values. Sometimes when I edit the field  I get that the configuration for the dynamic list is lost and I have to specify again the call to the MF. I did this for a couple of times and my surprise is that the old references are still in the source code. I realized of that when I used the alias manager. The old reference were there with ENUM....To check if the old references are called I switched on the flash debug console and I show that the MF is called a lot of times...
    Anybody knows how to eliminate these old reference???'  One the collateral effects is that the first value of the list is always shown.
    Antonio

    Hi Antonio, hi Marcel,
    the OSS-ID is 0000337147/2007 and the final given answer from SAP was:
    <i>Dear Customer,
    finally I managed to repreduce your problem,
    and it's a bug.
    we will aim to fix it in next releases, and the new Flex 2.0 runtime
    should handle this case, once it will be availible.
    Regards,</i>
    So it might be fixed with the actual SP, but I don't know that for sure (I rather doubt it, to be honest).
    Best Regards,
       Benni
    PS: You might avoid the problem of re-defining the entry list, by defining it as a global entry list, not a dynamic. However, the top-most entry will still be shown!

  • Problem with drop down list: on Windows it works, on Mac doesn't

    Dear forum,
    I am reworking the MultiPageImporter2.5 script by Scott Zanelli; going to add some new features.
    So far I added a drop down list so the user could choose on which pages to place a pdf/indd file: odd/even/both.
    However I encountered a strange problem: on Windows it works as expected, but on Mac nothing happens when I click the popup. When I write a dialog, I almost always use automatic layout and never encountered such a problem before. But in this script the author uses fixed position for the controls so I followed his coding style:
    dLog.pageSideMode = dLog.pan4.add('dropdownlist', [10,110,180,40], ["Odd and Even Pages", "Only Odd Pages", "Only Even Pages"]);
    dLog.pageSideMode.selection = pageSideMode;
    The drop down list is visible both on Windows and Mac, but on Mac it’s not clickable. What am I doing wrong?
    Another question: in the script, the author created three popups. In the code, each popup has a different height (the last element of the “bounds” array) – 60, 88, 33. Does it make sense to make them different if on the screen they look exactly the same (I mean height).
    Here’s my version of the script.
    I think the easiest solution for me here is to rework the dialog part from fixed to automatic layout.
    Thanks in advance.
    Kasyan

    Hi johniko,
    In my version of the script, the user will have to choose a file to be placed directly in the dialog box. The selected file can be saved into a preset. I'm reworking it for another person (not for myself) and that's what he wants.
    Regards,
    Kasyan
    P.S. By the way, you can simply merge all your pdf-files into a single document in Acrobat.

  • Problems with drop down menu in html snippet

    Hi all,
    I am trying to use a form with a drop down menu so the user can jump directly to the corresponding page. I am using the code generated by http://javascript.internet.com/generators/drop-down-menu.html, and it works correctly when I test it in the "Show me the drop down menu" option on their page.
    This is the html code:
    <!-- ONE STEP TO INSTALL PULLDOWN MENU:
    1. Paste the code into the BODY of your HTML document -->
    <!-- STEP ONE: Copy this code into the BODY of your HTML document -->
    <BODY>
    <!-- Original: Ricocheting ([email protected]) -->
    <!-- Web Site: <a class="jive-link-external-small" href="http://free.prohosting.com/~ric">http://free.prohosting.com/~ric</a> -->
    <!-- This script and many more are available free online at -->
    <!-- The JavaScript Source!! <a class="jive-link-external-small" href="http://javascript.internet.com">http://javascript.internet.com</a> -->
    <form name="jump">
    <select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex] .value;" value="GO">
    <option value="">select genre</option>
    <option value="http://www.mygaragebandstudio.com/blues_rock.html">blues/rock</option>
    <option value="http://www.mygaragebandstudio.com/cinematic.html">cinematic</option>
    <option value="http://www.mygaragebandstudio.com/country.html">country</option>
    <option value="http://www.mygaragebandstudio.com/electronic.html">electronic</option>
    <option value="http://www.mygaragebandstudio.com/experimental.html">experimental/new age</option>
    <option value="http://www.mygaragebandstudio.com/jazz.html">jazz</option>
    <option value="http://www.mygaragebandstudio.com/latin.html">latin</option>
    <option value="http://www.mygaragebandstudio.com/orchestral.html">orchestral</option>
    <option value="http://www.mygaragebandstudio.com/urban.html">urban</option>
    <option value="http://www.mygaragebandstudio.com/world.html">world</option>
    </select>
    </form>
    When I paste this code into an html snippet in iWeb, my page does not work correctly after publishing to a folder. The jump to location doesn't open its corresponding page. Instead, it defaults to the same page that has the drop down menu, only the menu doesn't appear any more. Instead, I get a "hole" where the drop down menu used to be.
    This is my URL: http://www.mygaragebandstudio.com/jingles.html
    I examined the code of the page with the html snippet generated by iWeb, and to my surprise I couldn't even find the html code of the form with the drop down menu. Where is it?
    Please help!
    null

    Manuel wrote:
    Green Star for you!
    JSYK,
    You didn't actually give PressWeb the green star by marking his post as the post that solved your question. You merely marked the question as answered but never actually marked PressWeb's post as being the post that answered your question, which will in effect reward PressWeb with the green star as seen by a green star appearing in the header for his post. I only mention this because you have incorrectly mentioned rewarding PressWeb with a green star.
    Hope that helps.

  • Problem with drop down menus in firefox 4

    when I scroll over a drop down menu, for example when I right click and put the cursor over one of the options it goes black. If I scroll over one of the menu bar drop down menus as I move over one of the options it stays highlighted in gray. I am running firefox 4 and have already tried turning on the menu bar and turning off hardware acceleration

    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions is causing the problem (switch to the DEFAULT theme: Firefox (Tools) > Add-ons > Appearance/Themes).
    * Don't make any changes on the Safe mode start window.
    * https://support.mozilla.com/kb/Safe+Mode
    * [[Troubleshooting extensions and themes]]

  • Problem with Drop down by key

    Hi all,
          I Inserted several drop down by key in my view at design time. When I try to run the application it displays an error as
    java.lang.ClassCastException at com.sap.tc.webdynpro.progmodel.context.Paths.getAttributeInfoFor(Paths.java:202)
    My requirement is,
    I am getting a table with two fields(key,value) from R/3 I want to display these in the drop down by key box how to bind them to this drop down.

    Hi Refer the below link
    DropdownList box to display R/3 table  
    Re: DropdownList box to display R/3 table
    see this link for when to use DropDownByIndex (DDI) vs DDK (DropDownByKey) and how populate data from R/3.
    Re: webdynpro populating dropdown values programmatically
    populating dropdownbyvalue with the r/3 value?  
    Re: Regarding DropDown Box
    /message/2187817#2187817 [original link is broken]
    Re: DropdownList box to display R/3 table
    create context value attribute and bind to drop down by key
    not getting value from DropDownByKey
    Dropdown by key
    dynamic DropDownByKey
    http://help.sap.com/saphelp_nw04/helpdata/en/4a/8613e41629344194e4f40393740d51/content.htm
    For DropdownbyKey
    http://help.sap.com/saphelp_nw04/helpdata/en/08/13dbfb6e779743bb2ca641ebcb3411/content.htm
    For DropdownByIndex
    http://help.sap.com/saphelp_nw04/helpdata/en/24/25e08d4ba6c743b55f1d375637ba8d/frameset.htm
    Regards,
    Saraswathi
    Pls reward points for useful info.

  • Problems using drop down menus in safari v7

    I am having problems using drop down menus in safari v7. e.g. on the BMW used cars website (http://usedcars.bmw.co.uk), there's a drop down box for location. This only goes up to 50 miles on my macbook but goes up to national on my iPad. Any ideas?

    Thanks Peter, Dale. Looks like it is back to the drawing board for me then!
    I tried to import it through MS Word but iPad doesn't support the document.  Looking into converting document into a Numbers spreadsheet as it has drop down boxes but unfortunately need to buy the £6.99 numbers app for iPad to make it worthwhile. Might just stick to good old fashioned "cross out the answers that don't apply" using pen and paper..................

  • Safari won't provide a drop down menu when I click on paper clip in outlook email. Any help on this would be great.

    I am using Microsoft Outlook for work email and Safari won't display a drop down menu when I click on the paper clip for attachments. The IT person at work says the browser isn't working or Safari isn't updated and I should try a different browser.   My other Comcast email is fine. I can attach anything.  Any help would be great.

    You could try enabling the Develop menu and try using IE but no guarantees. Not surprising that (Microsoft) Outlook isn't compatible with Apples' Safari.
    From your Safari menu bar click Safari > Prerferences then select the Advanced tab.
    Select:  Show Develop menu in menu bar
    Now from the Safari menu bar top of your screen click Develop > User Agent
    Try IE 7, 8, or 9.

  • IPhone 4 wifi portal login with drop down menu

    Hi,
    I'm extremely happy with my iPhone 4. I use it often in WiFi hotspots (hotels, university, train stations etc) and the new portal log in system is really handy. Previously I used a third party WiFi portal logging in app which is now no longer necessary. HOWEVER, there seems to be a problem with the iPhone 4 remembering log in protocols for WiFi portals that include selecting an item from a drop down menu before logging in. For instance, the WiFi hotspots in trainstations here in the Netherlands work with several protocols depending on through which organisation you can log in. Before entering your log in details you have to select through which organisation you have access to such a hotspot. The third party logging in app was able to remember how to do this, but the iPhone 4 auto logging in thing (sorry, I don't know the term) does not remember. It's frustrating to have to fill the details in every time. And I can't even use the third party app any more because it needs primary connection to the local WiFi before it can log in, and the iPhone 4 won't give a primary connection if you don't fill in the details to log in (and if you do, you're already logged in and the third party app is useles...)
    Sorry for my rant, I'm wondering if there's a way to make the iPhone 4 log in tool-thing remember the protocol for logging in with drop down menus, or if there will be an update to fix it...
    Thanks,
    Tasmin
    P.S. I'm running iOS 4.1

    are you sure your stop() are in the right place??
    eg.. on the last frame of the onRollOver animation??
    also... why have you got on(releaseOutside); ???
    onRollOut will suffice.

  • HT1341 Epson Stylus SX435W otherwise known as Workforce 435. Although Apple promises software drivers on-line attempts at downloading and ADDING repeatedly come up with drop down menu "...it is not currently available from the software server". Please hel

    Epson Stylus SX435W otherwise known as Workforce 435. Adding Driver to an iMac
    Although Apple promises software drivers on-line, my attempts at downloading and ADDING it to my iMac
    repeatedly come up with drop down menu "...it is not currently available from the  Software update server". Please help?
    I have downloaded all the Epson Printer Software but I cannot make the final step.

    Reset the printing system and then try adding the printer again.
    http://support.apple.com/kb/ht1341
    (You have installed, not just downloaded the Epson driver, right?)

  • Hi I want to create a search form with drop down search criteria. This form should then search on the same site and display the search results. Is there HTML available for this? Or an oline site that I can use to build this form? I created a form in Jotfo

    Hi I want to create a search form with drop down search criteria. This form should then search on the same site and display the search results. Is there HTML available for this? Or an oline site that I can use to build this form? I created a form in Jotform.com, but this form doesn't search the site, instead it sends me an e-mail. Do you have a solution for me? Thanks.

    Hi I want to create a search form with drop down search criteria. This form should then search on the same site and display the search results. Is there HTML available for this? Or an oline site that I can use to build this form? I created a form in Jotform.com, but this form doesn't search the site, instead it sends me an e-mail. Do you have a solution for me? Thanks.

  • Is their any tutorials on how to make a navigation bar with drop downs in Dreamweaver CC now ?

    Is their any tutorials on how to make a navigation bar with drop downs in Dreamweaver CC now that they do not have the spry option?

    bbull2005 wrote:
    Preran, why wouldn't Dreamweaver include it's own menu/navigation bar widget?
    I can't answer on Preran's or Adobe's behalf, but I think you'll find at least part of the answer here: http://wiki.jqueryui.com/w/page/38666403/Menubar
    Adobe decided to discontinue development of Spry in August last year, and Dreamweaver CC made the switch to using jQuery UI widgets and effects. One reason for dropping Spry was that it failed to work correctly in some browsers. Judging from the fact that the jQuery UI menubar is now "on ice", creating a flyout menu that works reliably across all devices is proving more difficult than originally envisaged.
    Because all other widgets in Dreamweaver CC use jQuery UI, it's a reasonable assumption that Adobe hoped the jQuery UI menubar would be ready in time, but it wasn't.

  • Looking to create editable PDF forms with drop downs and text boxes for use on a Mac computer and iPad. Which product do I need to purchase? Do not need anything fancy

    Looking to create editable PDF forms with drop downs and text boxes for use on a Mac computer and iPad. Which product do I need to purchase? Do not need anything fancy

    Basically you would need Acrobat. However, it is now also possible to create basic form fields using just the free Reader. In fact, I've been working on a tool that allows you to do it, so if you're interested in it please contact me privately.

  • Error with Drop -down UI elements in my HCM PF Form

    Hi All,
    I am facing some error with Drop -down UI elements in my HCM PF Form. I have some 2-3 DD elements, which are not binded to any backend field, so i am specifying their values in the UI Properties itself.
    I am able to see my drop-down list values when the form first displays initally. On selecting the values from drop down, when i click on 'Check and Send' button, the form refreshes itself, and all the drop down values dissappear, along with the selected value.
    Can anyone tell me if i am missing anything here ? Do i need to define my DropDOwn field in the Generic Service of HCM PF and then Bind it in the form ?
    Any inputs on this would be welcome !
    Thanks in advance,
    Aditi

    Hi Christopher,
    Am also having the same issue like when am testing the process and clicking on check button, my do_operation method is called and the table SERVICE_DATASETS is getting updated. I am getting success message and all the fields are getting cleared. But when am clicking on second time the CHECK button am getting error's, because of the fields getting cleared in the screen.
    But after executing the process all the fields getting refreshed. Even what ever values I have entered that too is getting cleared. I have debugged and not able to figure it out why its getting cleared.
    I have activated the ISR context mapping and activated the Adobe Form too. I dont know where am going wrong.
    I will be doing the context mapping for ISR via IMG path by clicking the "Compare Form Fields button" also using Tcode HRASR_DT also i have tried.But the form is consistent.
    Do we have any note or patches regarding this issue.
    Please help me out form this as i could not process further in my development.
    Thanks & Regards,
    Raja

Maybe you are looking for

  • Please read, Unlimited loyalty gone.

         We have been a Verizon customer for many many years now. Since they bought out Bellsouth Mobility back I don't know when, probably 20+ years ago. We have had our ups and downs over the years and have recommended and praised them to hundreds if n

  • Multiple instruments; same test. Best plan of attack?

    I'm looking for some information on design structure dealing with multiple instruments that do the same thing but require different command sets. Specifically I have an application running tests via VISA GPIB using an Agilent PNA. My current applicat

  • Order by Clause is slow

    Guys, I have a table of 80,000 records.If i select * from this table need 0.04 seconds.If I add order by clause it become very slow 30 sec. Order by clause is on the primary key.Also i increased the size of temp tablespace. Kindly assist

  • More (free) fonts for Mac OS X available?

    Hi, I find the actual collection of fonts available by default in Mac OS X a little bit too restrictive for some project I want to do. I'd like to know if there is somewhere I can fnd free (or relatively cheap) fonts for Mac OS X to add to my collect

  • Why are declined events NOT showing on iPhone iOS7 (setting is marked to "on")

    Apparently I and some of my colleagues are having the OPPOSITE issue from most. We are syncing with Google Calendar. We have set "Show Declined Events" to ON Declined Events are NOT showing on iCal. Any ideas? Thanks. Richey