Link doesn't work in safari landscape mode

Hi All!
Sometime I have problems with links in Safari. If I click on a link, it doesn't work, only when the iPhone is in landscape mode. If I turn the iPhone in portrait mode, I can click on the link correctly.
Is there anyone with this problem?
thanks!
stefano

same thing here, I've talked to apple twice and no resolution
if you move the screen up you can usually get the links to work
also when I do Google searches I can get to the second page of results and then I can go no further

Similar Messages

  • Mailto: Link doesn't work in Safari

    In my project, we have a link to open a outlook mail. when i open the link in IE/Chrome/Firefox browser, it opens the outlook with the given mail id. But, same link was not working properly in safari browser.
    I am using safari version 5.1.7(7534.57.2). When i click the link, it opens the outlook mail, but my current(Parent) window gets crashed.
    Below is the sample code i used.
    mc.addEventListener(MouseEvent.CLICK, sendEmail);
    function sendEmail(e:MouseEvent):void{
         navigateToURL(new URLRequest("mailto:[email protected]"));
    Thank in advance

    Thanks for your reply..
    We already tried that too. But doesn't work.
    My problem is after clicking the link, my current window became black screen and it opens the outlook with the given mail id
    we are not sure, whether the issue is related to flash player or safari browser.
    Any idea?

  • Struts tag html:link doesn´t work in Safari

    *Very important question for our company!*
    I´m trying to optimize our web application( www.seb.de) for Safari browser.
    The problem is that Safari don´t display Struts <html:link> on the page. On the page should be a button "delete" at the right side.
    Button Code:
    <html:link>
    href="DeleteMail"
    newFlow="true"
    styleClass="a_delete"
    bundle="<%=SebMailBoxConstants.BUNDLESEBMAIL%>"
    titleKey="Delete"
    </html:link>
    There is a styleClass "a_delete", which this button uses:
    a.a_delete
    background-image: url('icon/icon_delete.gif');
    background-repeat: no-repeat;
    width: 12px;
    padding-right: 12px;
    margin-top: 2px
    Please help me to solve this problem.
    Best regards,
    Sergei.
    SEB Group.

    same thing here, I've talked to apple twice and no resolution
    if you move the screen up you can usually get the links to work
    also when I do Google searches I can get to the second page of results and then I can go no further

  • CMD+ any shortcut doesn't work in Safari after upgrading to Yosemite

    After upgrading from Mavericks to OS X Yosemite 10.10 not a single CMD+ shortcut works?!
    For example CMD+tab works (switching between apps), ctrl+tab works (switching between tabs), but none of these work: CMD+W, CMD+Q, CMD+F, CMD+C, CMD+X, CMD+P...
    They all work perfectly fine in all other apps. It's just Safari.
    Does anyone have any idea why and how to fix this?

    I have a similar pb :
    CMD+SHIFT+1,2,3,... doesn't work in safari.
    I'm using "English interface" with "French keyboard".
    following miladc advice and link (Shortcuts not working on Safari and Firefox),
    I changed my Language pref to French ... so I got "French interface" with "French keyboard" ... and it worked once !!!!
    But it works no more ... very weird
    All I want to do, it's having shortcut for my bookmarklet !

  • Display doesn't go into a landscape mode

    Hi My display on new 4S doesn't go into a landscape mode. Tried with a calculator test - didn't work. Any ideas?

    Orientation lock is most likely on. Double tap the home button...swipe left to right...far left is the orientation lock button...tap on/off.

  • Google Application Links No Longer Work in Safari

    Hello,
    It seems something is up. Google application and profile links no longer work in Safari 7.0. I downloaded Chrome for OS X and they work perfectly fine in that. So is it Google trying to gain more share of the browser market by modifying there code or is it a Safari update that recently broke the functionality? All I know is I have had to download a different browser to get my google mail working.
    If you want to test, go to your gmail and try to click the google applications icon near the top right. Nothing will happen in the latest Safari. Now try it again in Chrome and guess what! This used to work perfectly. More importantly is the profile icon (far top right, usually your picture) which allows you to login/logout/switch google mail accounts also will not work at all which makes it impossible to use this with Safari.
    Apple you may want to track down what changed as this will impact your browser's market share if its is not fixed asap. I will come back and try Safari again in a week and see if they have fixed anything. For now, sadly its off to Chrome for me.
    If you would like me to provide any diagnostic information I am more than happy to assist in this matter.

    Hilarious,
    Its a Safari bug. Go fullscreen and the icons work fine. Now go back to non-fullscreen and they dont work.
    Apple..... ho..... Apple?????
    Time for a fix......

  • Download doesn't work with Safari

    Just a tip if you happen to be using Mac OS. It appears that the License Agreement
    page doesn't work using Safari. Works fine with Camino, though.
    Blake Meike

    Hi Matthew
    Does the Activity Window work normally when Rapport is uninstalled ?
    If so, I'm not sure what you could do beyond keeping it that way & watching for an updated version; or contacting
    http://www.trusteer.com/support/report-problem & seeing what they say, since it might conflict with some other add-on. You've the same trouble in a new account ?.

  • How to I set an internal link in a PDF document using Preview?  After setting a link under the Tools/Annotations menu, the link doesn't work and no detailed instructions are provided.

    How to I set an internal link in a PDF document using Preview?  After setting a link under the Tools/Annotations menu, the link doesn't work and no detailed instructions are provided via the Help menu other than it showing the pull-down menu selection to make.

    No.  I am able to use the other features such as underlining, highlighting, adding rectangles and oval and save those changes.

  • XMLhttprequest doesn't work in safari

    i have a website and it works fine in Internet Explorer, but the website doesn't work in Safari.
    i use xmlhttprequest to get data from the database and that data i want to put in an selectbox.
    i have multiple selectboxes and the first one i don't use ajax to get the data and that one works fine. but as soon as i use ajax it doesn't work anymore in safari.
    this is the function i call to get the data.
    function UpdateOrder(custid)
          var xhrrequest = getXhr();
              // Ici on va voir comment faire du post
          xhrrequest.open("GET","ajax/UpdateOrder.php" +"?q=" + custid, true);
          // ne pas oublier ?a pour le post
          xhrrequest.setRequestHeader('Content-Type','application/x-www-form-urlencoded') ;
          xhrrequest.send("bedrijfsnaam="+custid);
          // On d?fini ce qu'on va faire quand on aura la r?ponse
          xhrrequest.onreadystatechange = function(){
           // On ne fait quelque chose que si on a tout re?u et que le serveur est ok
           if(xhrrequest.readyState==4 && xhrrequest.status==200){
            var string=xhrrequest.responseText;
            var array=eval(string);
            var tdaddress = document.getElementById("tdorderid");
            var selectiebox = document.getElementById("selorderid");
            if (array.length > 0)
             //selectiebox vullen met straatnamen
             var splarray = array.toString();
             var strarray = splarray.split(",");
             var i=0;
             for(i=0; i< strarray.length; i++)
              var oOption=document.createElement("option");
              oOption.setAttribute(i,strarray[i]);
              oOption.setAttribute('value',strarray[i]);
              var oText=document.createTextNode(strarray[i]);
              oOption.appendChild(oText);
              selectiebox.appendChild(oOption);
    i also viewed the errorlog and there it said:
    Failed to load resource: the server responded with a status of 404 (Not Found)
    INVALID_CHARACTER_ERR: DOM Exception 5: An invalid or illegal character was specified, such as in an XML name.
    can anyone help me please?

    it works. there were some problems with the select box. the way it was created didn't work in safari and chrome. but now it does

  • Personalize link doesn´t work

    Hi Everybody,
    I´m getting an access denied error when I click on the Personalize link in the portal masthead iview. This is what I did:
    1) I copied the eu_core_role.
    2) I copied the personalize workset.
    3) I deleted the home content in the new eu_core_role.
    4) I assigned the new personalize workset to the new eu_core_role as a delta link.
    5) I assigned the new eu_core_role to users and user groups.
    6) I checked the end user permissions for these users and user groups.
    After these steps, the link doesn´t work.
    We´re on Netweaver Portal SP14.
    I tested the Personalize link with the portal URL fully qualified (DNS) and not fully qualified (just hostname).
    Can somebody help me?
    Thank You very much for Your help.
    Regards.
    SS.

    Hi again,
    Another question:
    After I assigned the new eu_core_role to users and user groups, the tool area search doesn´t work. It shows an access denied error, too. This error seams to be related to changes on eu_role, isn´t it?
    The tool area search and the Personalize link only work with administrators (users with admin roles).
    I´ll appreciate Your help.
    Regards.
    SS.

  • Iphone4 doesn´t work properly in 3G mode

    My iphone4 doesn´t work properly in 3G mode. Telefon calls break and telefone quality is poor. Internet is mostly not posssible. With 2G both (Telefone, Internet) work. The problem is not that vodafone net is poor because other smartphones work properly at the same location. Telefone calls often break with "no connection" even with 5 sticks. Internet speed is mostly poor, i.E, slower than 2G. It is definitly not a net problem. I think (not sure) the problems occures wit IOs 4.3.3

    Thanks for your help Jeffrey,
    But
    - I checked with several USB audio devices, from different providers. The issue is the same.
    - I checked with several applications (Winamp, MediaPlayer, ...). Same issue.
    - I checked these devices with different laptops (tried 3 different models) : I have NO PROBLEM.
    - The USB devices I use do not need external power supply. I tried EDIROL UA-25 which works perfectly in any case, but not with my TOSHIBA M40.
    - I agree that some application can disturb audio management. But in that case, I would like to know which one from the standard installation is the cause, so that I can fire it. It's anyway curious to see that switching from ACPI to Standard mode fixes the issue, as all applications are still there. I would say the applications are not the issue, then.
    - All Microsoft updates have already been installed
    - I think I tried everything that could be done by closing applications, changing power management modes, system cache, ...
    - I have no other hardware device connected/installed (printer or whatever)
    - RECORD works perfectly. So if some application layer was disturbing, I would bet it would bother in Play and Record as well.
    CONCLUSION : Unless someone can prove it (and I'm ready for some testing), I still believe there's a harware/driver layer that is faulty in the Toshiba management.
    And I don't need to contact the manufacturer, as I AM one of them :)
    If you are part of the Toshiba support, let me know. Maybe we can investigate together.
    FYI : I had to create a new user ID for this forum as it did not accept the one I created this morning anymore :(
    Thanks anyway.

  • Paypal button doesn't work on Safari. but works on Firefox

    I have over 100 pairs of "Add to Cart" buttons on my website. One of each is on the individual item page and the other is on my Order Form.
    I have one button that works on the order form, but the identical button doesn't work on the individual page when using SAFARI, but works when I use FIREFOX!
    I have recreated the button several times and put it in the proper place several times, saved the changes and republished. Still it doesn't work in Safari!
    This must be a Safari issue not a PayPal issue
    Any suggestions?

    If that's checked, see: How to perform a "clean install" of Flash Player in Mac OS X

  • Java doesn't work on safari / xp

    Downloaded the latest Safari, 5.1.7, for Windows XP
    Downloaded the latest Java, JRE as well as tried JDK, 7.04 and configured for IE and Safari.
    Java.com test works on IE, but on Safari, refers to
    C:\Program Files\Oracle\JavaFX 2.1 Runtime\bin\server\jvm.dll
    There is no server directory, nor any jvm.dll anywhere in the Oracle install.
    What's wrong??
    Help!

    Ok, 3 days and no responses. I guess Java doesn't work on Safari/XP. Time to switch...

  • I have latest version of flash but flash doesn't work in safari!

    Why do I have latest version of flash but flash doesn't work in safari!I have flash for mac.Your help will be appreciated.

    If you're talking about using Flash on your iPod, you can't. There is no version of Flash that will work on any iOS device. If you're talking about using Flash on your computer, you may want to repost in the correct forum.

  • HT5655 Flash still doesn't work with Safari.

    I've done this repeatedly. Flash still doesn't work with Safari. It does work with Firefox and Chrome.
    I deleted the Flash plugin from Library>Internet Plugins. That didn't solve the problem either.
    What can I try next? Thanks.

    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 CANONiMAGEGATEWAYDL.plugin
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 DRM Plugin.bundle
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 DirectorShockwave.plugin
    drwxrwxrwx   3 root        wheel    102 Mar  2 08:17 Disabled Plug-Ins
    drwxrwxr-x   3 root        wheel    102 Mar 23 00:43 Flash Player.plugin
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 Flip4Mac WMV Plugin.plugin
    drwxrwxrwx   5 root        wheel    170 Sep  1  2012 Google Earth Web Plug-in.plugin
    drwxr-xr-x   3 root        wheel    102 Sep 25  2012 JavaAppletPlugin.plugin
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 OfficeLiveBrowserPlugin.plugin
    drwxrwxrwx   3 root        wheel    102 Jun 20  2012 Quartz Composer.webplugin
    drwxrwxrwx   3 root        wheel    102 Mar 19 23:30 QuickTime Plugin.plugin
    lrwxrwxrwx   1 root        wheel     68 Sep  1  2012 RealPlayer Plugin.plugin -> /Applications/RealPlayer.app/Contents/MacOS/RealPlayer Plugin.plugin
    drwxrwxr-x   3 root        admin    102 Apr 11  2012 Silverlight.plugin
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 ebldetect.bundle
    -rw-rw-r--   1 root        admin    856 Feb 28 21:45 flashplayer.xpt
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 googletalkbrowserplugin.plugin
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 iPhotoPhotocast.plugin
    drwxrwxrwx   3 root        wheel    102 Sep  1  2012 npgtpo3dautoplugin.plugin
    -rw-rw-rw-   1 root        wheel   2394 Jul 21  2012 nsIQTScriptablePlugin.xpt

Maybe you are looking for