Safari will freezes opening links in new tabs or windows

I've noticed that Safari will briefly freeze when opening a link in either a new tab or a new window or when a page is set to automaticly reload after a set time while there are other tabs or windows opened. It does this on all web sites.
I took a look at everything I could think of, including permissions, used DiskWarrior & Drive Genius to repair,defrag and rebuild directories on my drive, and used Cocktail to clean out all caches nightly. I also have no add-ons installed other than the Flash Player 9 Beta 3 plug-in (but I was having this problem before installing the player). I haven't touched Fontbook (I use Suitcase Fusion). I also know it's not an internet connection speed issue since I have a 15mbps fiber connection coming into my home. I also tested out using Firefox and did not have the problem there.
Anybody have any other ideas?
G4 G.E.   Mac OS X (10.4.6)  

Try the "Reset Safari..." command in the Safari menu.

Similar Messages

  • Will not open link in new tabs, some of my add ons are not working properly

    I am using Firefox 3.6.6
    My add ons, such as Gmail Notifier and Forecast Fox are not showing up on the bottom, but they are all enabled and updated. Also, when right click and select Open Link in New Tab, it opens an Untitled tab.
    == This happened ==
    Every time Firefox opened
    == I'm not sure when

    The current version of Greasemonkey is compatible with Firefox 29. Could you check to make sure it is not turned off? There should be a "monkey" icon on the toolbar. Clicking that icon turns Greasemonkey on and off; the "off" state is designated by a faded icon, while the "on" state has a full-colored icon.
    More generally, could you check for possible extension updates and disable unimportant extensions in case one of those conflicts with Firefox?
    Open the Add-ons page using either:
    * Ctrl+Shift+a
    * "3-bar" menu button (or Tools menu) > Add-ons
    In the left column, click Extensions. Then, look for the "gear" button above the list and choose Check for Updates.
    I also suggest disabling any extensions you won't be using for the next 24 hours so that you can test whether that improves Firefox's functioning.
    Usually a link will appear above at least one disabled extension to restart Firefox. You can complete your work on the tab and click one of the links as the last step.
    Any difference?
    One possible reason for hangs, especially where you eventually get a dialog indicating that a script is running slowly, is Flash. To minimize sites from using Flash unnecessarily, try setting Flash to Click-to-Play ("Ask to Activate"). This will delay Flash from starting on a page until you approve it.
    On the Add-ons page, in the left column, click Plugins. Look for "Shockwave Flash" and change "Always Activate" to "Ask to Activate".
    When you visit a site that wants to use the Flash, you should see a notification icon in the address bar and one of the following: a link in a black rectangle in the page or an infobar sliding down between the toolbar area and the page.
    Any noticeable difference?

  • Right-clicking Open Link in New Tab or Window doesn't work

    After upgrading to the latest version, 30.0, the right-click functions to Open link in New Tab or New Window stopped working. When I click the link that I would like to open in new tab or window, the right click window appears, I click on the desired function, and the right click window closes and nothing happens.
    I restarted in safe mode and the problem remains. I am using Windows XP. I also tried uninstalling Firefox and then doing a clean re-install and that didn't help.
    For now I went back to using version 29.0.1. Yes, I know that it isn't as safe but I can't use Version 30. without the right-click options!!!
    I really wish the developers would focus on fixing bugs, vulnerabilities, etc. and leave the basic functions alone! The old saying if it isn't broken don't "fix" it!!!!!

    This didn't fix the problem so I have decided to revert to the previous version: 24.6.0 esr. Maybe when version 31 or 32 come around I come back to the "latest" version?

  • Visio document imported into a SharePoint VisioWebAccess webpart : open links in new tab or window

    Hello.
    I'm using a SharePoint Server 2010, with a Visio Web Access WebPart.
    With Visio 2010, I created a vdw document which I put in this webpart.
    This works very well, but i have some hyperlinks which I want to be opened in a new tab (or a new window), so that he SharePoint page won't be replaced by the target page.
    So, in Visio, I tried to modify the ShapeSheet of each hyperlink, by setting the "NewWindow" to true. Unfortunately, it does not work : links are replacing the current page.
    I found nothing on the web that could give me a trick to do this.
    Has anyone an idea ?
    Thanks a lot
    _David

    Hello _David C,
    You can create some JavaScript code that will open the hyperlink in a new window. Here is a JavaScript sample that will open the first hyperlink applied to a shape in a new browser window. I have tested it in both IE and FireFox.
    <script type="text/javascript">
    // Declare the global variables for the script, for the Visio Web Access Web Part, the active page in the Web Part,
    // the shapes on the active page, and the shape on the page without hyperlinks.
    var vwaControl;
    var vwaPage;
    var vwaShapes;
    var coldShape;
    // Add a handler to the AJAX Sys.Application.load event.
    Sys.Application.add_load(onApplicationLoad)
    function onApplicationLoad()
    try{
    // Capture a reference to the current instance of the Visio Web Access Web Part.
    // Add a handler to the 'diagramcomplete' event.
    vwaControl= new Vwa.VwaControl(getVWAWebPartID());
    vwaControl.addHandler("diagramcomplete", onDiagramComplete);
    catch(err){
    alert(err);
    function getVWAWebPartID()
    // Search all of the <div> tags on the page to find the div tag with the ID of the VWA Web Part.
    var divArray = document.getElementsByTagName("div");
    var webPartElementID;
    for (var i = 0; i < divArray.length; i++) {
    var node = divArray[i];
    if (node.className == "VisioWebAccess")
    webPartElementID = node.parentNode.parentNode.id;
    break;
    return webPartElementID;
    function onDiagramComplete()
    try{
    // Set the vwaPage and vwaShapes variables to the active page and the shapes collection on that page, respectively.
    vwaPage = vwaControl.getActivePage();
    vwaShapes = vwaPage.getShapes();
    // Set the 'cold shape' for the current active page in the drawing.
    selectColdShape();
    // Remove the handler from the shape selection changed event and then add it back to the event.
    vwaControl.removeHandler("shapeselectionchanged", onShapeSelectionChanged);
    vwaControl.addHandler("shapeselectionchanged", onShapeSelectionChanged);
    catch(err)
    alert(err);
    onShapeSelectionChanged = function (source, args)
    try{
    // Get the array of hyperlinks from the selected shape.
    var vwaShape = vwaShapes.getItemById(args);
    var newURLArray = vwaShape.getHyperlinks();
    var newURL;
    // Check to see whether the shape has any hyperlinks.
    if (newURLArray.length > 0)
    newURL = newURLArray[0].value;
    // Check to see if the hyperlink goes to another page in the drawing.
    if (newURL.indexOf('vdw') < 0)
    // Open the hyperlink in a new window.
    var newWindow = window.open(newURL);
    else
    // Set the active page to the new page.
    setNewPage(newURL);
    catch(err)
    alert(err);
    function selectColdShape() {
    try {
    // Set variables with the names of shapes on the pages that do not contain hyperlinks.
    // Customize the values for these variables to fit your web drawing.
    var coldShapePg1 = "Sheet.6";
    var coldShapePg2 = "Sheet.10";
    // Check to see if the coldShape exists on this page.
    if (vwaShapes.getItemByName(coldShapePg1)) {
    // Set the active shape to the shape without hyperlinks on page 1.
    coldShape = vwaShapes.getItemByName(coldShapePg1);
    vwaPage.setSelectedShape(coldShape.getId());
    else if (vwaShapes.getItemByName(coldShapePg2)) {
    // Set the active shape to the shape without hyperlinks on page 2.
    coldShape = vwaShapes.getItemByName(coldShapePg2);
    vwaPage.setSelectedShape(coldShape.getId());
    catch (err) {
    alert(err);
    function setNewPage(pageId) {
    // Set the active page in the drawing to the page ID passed in as argument.
    var indexOfAmp = pageId.indexOf("&");
    var page = pageId.slice(6, indexOfAmp);
    vwaControl.setActivePage(page);
    </script>
    Note that this code requires that each page have a "cold shape" that does not have any hyperlinks applied to it. In my test drawing, I added a hidden shape (in ShapeSheet, Width = 0, Height = 0) that did not have any hyperlinks. This is because the Vwa.shapeselectionchanged
    event fires when you switch pages, which creates the possibility that the JavaScript code will open a new window when you change pages in the viewer.
    If you are not familiar with the Visio Services JavaScript Object Model, I suggest that you check out the following resources:
    http://blogs.msdn.com/b/visio/archive/2010/02/21/the-visio-services-javascript-mashup-api.aspx
    http://msdn.microsoft.com/en-us/library/ff394649.aspx
    http://msdn.microsoft.com/en-us/library/ff394600.aspx
    I hope that this helps,
    E. Schmidt, Technical Writer
    Microsoft Corporation

  • Safari in Windows 7 open links in new tab same window...

    I have searched and seen similar topics, but no one answers. On my mac there is a terminal command that does this, but I use win 7 @ work and was hoping there was a way to accomplish the same thing. I want links to open in new tabs (just like clicking on ctrl + click does) I just don't want to have to press ctrl each time. Is there a preference file that can be modified? Any help would be appreciated.
    Thanks

    I'm afraid I'm not going to be of much help here, Chris.
    I'm not sure if this sort of function is handled by plists or registry settings, or by other components in the preferences/settings machinery.
    The locations of the various preference files and folders on Safari on Windows Seven that I'm aware of are:
    C:\Users\<username>\AppData\Roaming\Apple Computer\Preferences\com.apple.Safari
    C:\Users\<username>\AppData\Roaming\Apple Computer\Safari
    C:\Users\<username>\AppData\Local\Apple Computer\Safari
    If you're good with plist editing, you might be able to find a relevant setting in one of the plists in those locations (although on a Windows machine, not all of the preferences/settings componentry are handled by plists ... there's some database-driven functions too).
    Safari keys are sprayed through the registry. But you might want to start looking in HKEYCURRENTUSER (at a guess) for local-preference-related keys.

  • Safari will not open PDFs in new tab

    Whenever I open a PDF in a new tab, it doesn't show up. I can download it and open it perfectly fine, but it will not display in Safari...

    Back up all data.
    In the Finder, select Go ▹ Go to Folder from the menu bar, or press the key combination shift-command-G. Copy the line of text below into the box that opens, and press return:
    /Library/Internet Plug-ins
    From the folder that opens, remove any items that have the letters “PDF” in the name. You may be prompted for your login password. Then quit and relaunch Safari, and test.
    If you still have the issue, repeat with this line:
    ~/Library/Internet Plug-ins
    If you don’t like the results of this procedure, restore the items from the backup you made before you started. Relaunch Safari again.

  • Open links in new tab not window

    Hi I just started using safari and like it so far, the only problem i have is when i click a link it opens in a new window not a new tab. I know you can right click and select open in new tab but is there a way to default when i click it opens in new tab?

    Sorry, that can't be done. But if you buy a Mac, it can be done, so that's an incentive.
    Mulder

  • Middle click not opening link in new tab. Windows 7 Firefox 17.0.1

    Middle click suddenly stopped opening new tabs when links are clicked on. I was running 16, but updated to 17 (latest) to try to fix the problem. I am using a Logitech mouse and keyboard. Worked until this week.
    I really need this working again.

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Firefox Will not open a link in a new tab after I right click and then click on open link in new tab

    When I right click A bunch of new options pop up and firfox will not open links in new tabs. Safe mode did nothing.

    What do you mean with ''A bunch of new options pop up"''?
    Can you open a new tab by clicking the plus button on the Tab bar?
    Boot the computer in Windows Safe Mode with network support (press F8 on the boot screen) as a test.
    *http://www.bleepingcomputer.com/tutorials/how-to-start-windows-in-safe-mode/

  • Safari open link in new tab is gone

    hi i have problem with safari(5.0.5) 10.6.7, from the past  2weeks it is behaving very oddly,
    -.the short menu adressing open link in new tab is not at all appearing , at present i m using on keyboard options
    -when i enter webpage it opens in the other tab instead of the tab i intend to ,the content from other tab becomes the same as the other, also some of ther options from short menu lke save image , save image as also lost .
    -when i reset safari and restart open link in new tab appears in the short menu for 5-10 min (occassionally) and then again the same problem .
    i tried setting preferences , updated software ,
    but nothing works. .can anyone help me plz

    Check Safari / Preferences then select the Extensions tab. If you have any installed, turn that off, quit then relaunch Safari to test.
    And try troubleshooting the Safari .plist file  (preferences)
    Quit Safari.
    Open a Finder window. Select your Home Folder in the Sidebar on the left. It has a small house icon. Then open the Library folder then the Preferences folder. Move the com.apple.Safari.plist file from the Preferences folder to the Desktop.
    Relaunch Safari. If that made a difference, move that .plist file to the Trash. If not, move the .plist file back to the Preferences folder.
    And try resetting Safari. From the menu bar click Safari / Reset Safari. Select the top 7 buttons, click Reset.

  • Right click, open Link in New Tab stopped working

    Right clicking on a link in page and selecting either open link in new tab or window does NOT work. Nothing hapens. Just started the other day. Also cannot use Ctrl and right click. Works in Chrome. Right click and paste, etc work.

    Try a clean reinstall and delete the Firefox program folder before reinstalling a fresh copy of Firefox.
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 18.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    *(32 bit Windows) C:\Program Files\Mozilla Firefox\
    *(64 bit Windows) C:\Program Files (x86)\Mozilla Firefox\
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    If you keep having problems then also create a new profile.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Cannot open link in new tap or window after update to v.5

    I'd updated to V.5 and then found that it cannot open link in new tab or window, from google page, after updating. I'd reinstalled 2 times but it still be the same problem. How should I do? Please suggest.
    Thanks.

    This didn't fix the problem so I have decided to revert to the previous version: 24.6.0 esr. Maybe when version 31 or 32 come around I come back to the "latest" version?

  • Safari wont let me open links in new tabs anymore? Please help!?

    On my Macbook, I'm using Safari as my browser.
    Everything was fine until this morning; suddenly Safari will not give me the option of opening links from one page in another tab in the same window.
    For example, if I'm browsing on EBay and want to open a search result in a new tab of the same window, usually when I would right click on my track pad or magic mouse, it would say "Open link in new tab" or "Open link in new window". However, now when I right click, it just says, "Open link" "Open link in new window" and "Copy link".
    I haven't changed any settings or anything on my Macbook whatsoever in the last 3 hours (at least that I'm aware of). Can anyone please tell me how to get this back to normal?
    Also, it seems that when I right click anywhere on a page, I only see the options "back" and "reload" whereas before there was "view source" etc.
    Please help!
    xx0

    Hi,
    From the Safari Menu Bar, click Safari / Empty Cache. When you are done with that...
    From the Safari Menu Bar, click Safari / Reset Safari. Select the top 5 buttons and click Reset.
    Go here for trouble shooting 3rd party plugins or input managers which might be causing the problem. Safari: Add-ons may cause Safari to unexpectedly quit or have performance issues
    Since you are running Snow Leopard, *make sure Safari is opening in 32-bit mode, not 64*. Right or control click the Safari icon in the Applications folder, then click: Get Info In the Get Info window click the black disclosure triangle next to General so it faces down. Select 32 bit mode. Also, (in that same window) *make sure Safari is NOT running in Rosetta.*
    

Web pages now include a small icon or 'favicon' which is visible in the address bar and next to bookmarks. These icons take up disk space and slow Safari down. It is possible to erase the icons from your computer and start fresh. *To delete Safari's icon cache using the Finder, open your user folder, navigate to ~/Library/Safari/ and move this file "webpageIcons.db to the Trash.*
    If Safari still won't let you open links in new tabs, go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop. Relaunch Safari. If it's a successful launch, then that .plist file needs to be moved to the Trash.
    If your forum profile is correct (10.6.1) go to the Apple Menu/Software Updates ...
    Very important to keep your system software up to date.
    If you install the 10.6.3 update make sure and repair disk permissions.
    Quit any open applications/programs. Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and restart your Mac.
    Carolyn
    Edited by: Carolyn

  • Safari 3.1's right click problem opening links in new tabs

    For those of us who use a two-button mouse and like to open links in new tabs, Safari 3.1 has introduced problems that didn't previously exist. Right-click to open a new tab, then go back to the original document, and the problem appears. The mouse cursor no longer underlines links that are scrolled over. That makes it hard to tell if links are live or not. To restore that capacity, you have to left click somewhere on the page. Only then does normally underlining resume.
    A minor thing, but one that adds dozens of clicks to my day that weren't there before. Is there any way to avoid it?

    I have exactly the same problem, and i dont know what could be the reason. i tried different things, reapir permissions, reinstall Safari, clear the cache without any result. also if the link has a floating/bubble window (or what), it freezes too, and have to click somewhere else into the page to clear them. very annoying. =(
    ...on Windows it works correctly by the way...

  • When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    When I click to open anything I get a box saying open link in new window, open link in new tab, download linked file etc.  When I go to close anything I get hide toolbar, customize toolbar.  It takes  3-5 clicks and it will finally close.

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

Maybe you are looking for

  • Full Width Image/Slider

    Hi everyone, I'm having some problems using the full width option in relation to height. I want my image to adjust to both height and width as per the top image/slider following Adobe Muse Site of the day website - Home At present the width of my ima

  • Can't burn a cd in iTunes Mac

    Trying to burn a cd in iTunes Mac. Disc keeps getting ejected. One cd was accepted but was then ejected after having 1/2 of the playlist burned on with error 2131 (I think that was the error #) popping up saying that the procedure could not continue.

  • Plz help me in this hr task

    tables: pa0006-eindt (for date of joining of new employee) hrp1001(to check it has already attended a IT course) my regirement is to write a abap program to check everyweek if any new employee joined the company, then check in table of qualifications

  • HT4623 IPhone does not accept slice after Iihaddat new 6.0.1 device type as the iphone 3gs

    Official solution in the iPhone does not accept SIM after Iihaddat together knowing that iTunes updated, the new release bearing ČÓ Miqubl chip device Brightening official

  • Error Message no. 00398 in Goods Issue

    Hi, We are getting error at the time of Goods Issue posting against reservation with movement 281 (network) as below. ERROR 25.000- Message no. 00398 Diagnosis Placeholder for batch input error text, this message is not output. 25.000- Please help fo