What would cause Firefox to hang up for 5-10 seconds with great frequency?

There is a lagtime of at least several seconds before Firefox responds to any input (scroll bar, mouse over hyperlink, type in textbox, etc.), but the problem isn't showing up in any other apps. It will also frequently display the (Not Responding) message above the menu bar for a couple of seconds, before it responds. What might cause this?

Hey Bobby_Ko,
Today is your lucky day! I was planning on posting about this tomorrow, but will do so now. In fact, I started to have a similar problem with Chrome, even though it didn't manifest itself in quite the same way as in FF8. Somebody suggested doing changing the margins in the scroll event, and, after a bit of fiddling with it today, I fixed it in Chrome. On a hunch, I tried turning Hardware Acceleration on again in FF8, and, amazingly, that problem was fixed as well! So, here's the code I wrote - well, pseudo-code, since I'm at home and don't have the source handy:
// add this event listener to each scrolling DIV inside your outer
// scrolling DIV/IFRAME
$("innerDiv").addEventListener("scroll", myScrollHandler, true);
function myScrollHandler(e) {
var mov = ($("outerDiv").scrollTop == 0 ? -1 : 1);
$("outerDiv").scrollTop -= mov;
$("outerDiv").scrollTop += mov;
Hope this helps, Jim

Similar Messages

  • What would cause Firefox to request a resource multiple times after a long running script?

    I'm noticing some unusual behavior in Firefox when I include an image directly after a call to an external script which is long-running.
    For example:
    <pre><nowiki> <html>
    <body>
    <script type="text/javascript" src='external.js'></script>
    <img src="/test.gif" BORDER=0 WIDTH=1 HEIGHT=1 >
    </body>
    </html>
    </nowiki></pre>
    <br />
    Contents of external.js:
    <pre><nowiki> for(i=0; i<999999; i++){ ; }
    </nowiki></pre>
    <br />
    I notice that when a request to test.gif results in a 404 or 302, Firefox makes another request for that same resource immediately after the script has completed.
    127.0.0.1 - - [29/Apr/2011:16:22:22 -0400] "GET /test.gif HTTP/1.1" 404 507
    127.0.0.1 - - [29/Apr/2011:16:22:22 -0400] "GET /test.gif HTTP/1.1" 404 507
    This behavior doesn't occur for inline javascript, and I have pipelining turned off, so I'm fairly certain it's not related to that. Seems like odd behavior, or I'm just missing something not-so-obvious. Any ideas?

    This forum focuses on end-user support. You can find more web development help on the [http://forums.mozillazine.org/viewforum.php?f=25 mozillaZine Web Development board]. Separate forum, separate registration. Please note the tips in the Sticky Post at the top of the forum before posting.

  • 10.1.0.2.0 RMAN backup- What would cause RMAN to hang?

    Oracle gurus- Fellow in trouble, need your guidance.
    I have a serious issue that has no direct error to examine or fix.
    I have a replicated offline server that has a scripted RMAN backup to run nightly, but the backup times flux from what should be only 1 hour 30 minutes. Every other day it takes up to 10 hours to complete a backup that normally takes 1 hr 30 minutes. There is no difference in data loads- the server is offline and the data has not changed to any effect. I use database control instead of grid control, and I turn off emctl every night before the rman backup- I thought maybe emctl was hogging resources. There is nothing else running on the server except replication inserting a couple of rows of data on three tables every other minute.
    Where would I look to see where the problem exists when no errors are generated?
    Does RMAN wait to backup files if they are being accessed?
    Here is my backup script (the OS is Linux AS3) I run an AT job nightly.
    at -f /path/path/rman_backup 0600 tomorrow
    rman target/
    run {
    backup database plus archivelog;
    delete noprompt obsolete;
    sql 'alter system archive log current';
    exit;
    The Administrators are running a Legato Jukebox backup? a tape backup that backs up my DB files nightly. They run the Legato backup 3 hours after my RMAN backup- the problem is that my RMAN backup may be running during the Legato backup- so I assume that contention occurs and both backups fight for the DB files. This is not an issue when RMAN plays nice and finishes in the normal 1 hour 30 minutes, but when it exceeds 3 hours- we have serious issues, both RMAN and Legato backups take 10 hours.
    Please help, I am really puzzled. This is causing me major headaches, how can I assure that RMAN has a consistent backup time to completion. Is there anyway to script it to use more resources to ensure it finishes quickly?

    Have you monitored CPU and I/O during this process? Are there any other processes running during this time? You mentioned the server is offline, but you also mentioned replication is taking place ?
    You could query V$BACKUP_ASYNC_IO and look at EFFECTIVE_BYTES_PER_SECOND, WAITS and IO_COUNT.
    During the backup, you can run the following query to monitor RMAN:
    SELECT sid, serial#, context, sofar, totalwork,
         round(sofar/totalwork*100,2) "% Complete"
         FROM v$session_longops
         WHERE opname LIKE 'RMAN%'
         AND opname NOT LIKE '%aggregate%'
         AND totalwork != 0
         AND sofar <> totalwork;If the % Complete doesn't seem to be increasing, you should run the following select to determine what waits exist:
    SELECT sid, seconds_in_wait AS sec_wait, event FROM v$session_wait
         WHERE wait_time = 0
         ORDER BY sid;

  • What would cause multiple error lines to appear using validator logic

    What would cause multiple errors to appear for a single line as shown below. I coded Regular Expression Validator with a specific matching pattern and all the patterns work fine. When I key in an invalid pattern on a row I get the following errors dislayed. Why am I getting multiple error lines instead of one. Also when the data in the field is in error the field gets cleared. How do I fix this problem?
    Error
    java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    - JBO-ObjectCode_Rule_1: Object must be in range 8000-8999 or object must be in form of 8%, 8n%, 8nn% where n represents a number.
    - JBO-27008: Attribute set for ObjectCode in view object AccountsecuritygroupobjView2 failed
    - JBO-ObjectCode_Rule_1: Object must be in range 8000-8999 or object must be in form of 8%, 8n%, 8nn% where n represents a number.
    - JBO-ObjectCode_Rule_1: Object must be in range 8000-8999 or object must be in form of 8%, 8n%, 8nn% where n represents a number.
    - JBO-27008: Attribute set for ObjectCode in view object AccountsecuritygroupobjView2 failed
    - JBO-ObjectCode_Rule_1: Object must be in range 8000-8999 or object must be in form of 8%, 8n%, 8nn% where n represents a number.

    Looks as though my RegEx script is not coded properly so it is causing the problem.
    This is my regex script
    8([0-9]{3})|8([0-9]{0,2}\%)
    I changed the script above to the following to slowly build the script back to get rid of these multiple errors that are appearing. When I set my regex script to the following then I just get the one error line.
    ([0-9]{4})
    I thought the regex script was working but when I key an invalid value I get 8 error lines as shown above. That should not be happening. This regex script
    8([0-9]{3})|8([0-9]{0,2}\%)
    is to perform the following logic:
    The field I am editing is 4 characters long.
    1) The first character must be an 8 and the next 3 charaters must be any character from 0-9
    OR
    2) The first character must be an 8, the next 0-2 characters must be any character from 0-9, the next non-blank character after any digits must be a wild card character of %
    Examples: any number from 8000-8999, 8%, 8n%, 8nn% where n is any number from 0-9
    Edited by: cwilbur on Sep 14, 2011 1:28 PM

  • My iPad is suddenly charging very slowly. What would cause this?

    My iPad is suddenly charging very slowly. What would cause this?

    That should not be the case with the charging. You may want to visit an Apple store and see what they recommend. An iPad will not charge from a USB port on a computer as there is not enough power. You say you are plugging into the wall so I am guessing there is a charger block involved. There may be something wrong with the charger block so it may be worthwhile finding another iPad charger and trying that charger.

  • What would cause adobe connect to freeze in a session for users, while the moderator session did not

    what would cause adobe connect to freeze in a session for users, while the moderator session did not

    HI rogerstam1
    Is screen being shared at that time when addin freezes?
    if yes if this coems again could you just stop screen share and try it again.
    hope this helps.

  • HT201210 Wont turn on just flashes apple sign, for an ipad 2 what would cause this to happen When I tried to restore started to flash the dead battery sign

    Wont turn on just flashes apple sign, for an ipad 2 what would cause this to happen When I tried to restore started to flash the dead battery sign

    Hello Tommythecat_nz,
    I would check to ensure that the device is fully charged if you got the dead battery indicator. Let it charge for some time.
    -Derrick Lambert

  • I am having trouble downloading an extension for flash, despite having the most up to date flash version for Adobe Manager Extension CC. What would cause this to happen?

    I am having trouble downloading an extension for flash, despite having the most up to date flash version for Adobe Manager Extension CC. What would cause this to happen? It says I need to have flash 7 or higher. I have the most update flash available according to my browsers.

    If you are using Flash Pro CC 2014, please update Extension Manager CC to 7.2.1. Then please confirm whether Flash is shown in the product panel of Extension Manager CC. If not, please refer to Re: Why can't I see InDesign CC in my Extension Manager CC.

  • What would cause itunes to say "music file has been moved or is missing" when no files were moved?

    What would cause iTunes to say: "The song “All Prayed Out” could not be used because the original file could not be found. Would you like to locate it?" when the music library has not been moved or modified?  This is the case for many, but not all the songs in my library.

    But I can't... find... it... It's not there.
    Unless you're talking about the entire Mozilla Firefox folder (which isn't what the thing you copied says,) there is no installation folder.

  • When trying to send a photo via email, I am prompted to setup an email account even though email is already setup.  What would cause this?

    when trying to send a photo via email, I am prompted to setup an email account even though email is already setup.  What would cause this?  Better yet, how do I fix it?

    I have checked this on my device.  I see a Default account under Messages created outside of Mail will be sent from the default account.  There is an account selected, though it does not show my exchnage account.  If it is only an exchange accout, can that not be used for this?

  • I do  not see a Photo streaming icon when I open iCloud.  What would cause that?

    I do  not see a Photo streaming icon when I open iCloud.  What would cause that?

    The cloud icon means you've already downloaded those Apps in the past and they are in your purchased history.
    For payed apps this would allow you to redownload them without having to pay again.
    Just tap on the cloud icon to start the download.

  • What would cause my iphone 5 (9months old) screen  to bow out by the volume buttons? - never been dropped

    I purchased my iPhone new in November. Recently it has been shutting itself off at random times. Registering that it needed to be charged although it had 50 -80% left on the battery. It was pointed out that the screen is bowing out by the volume buttons. After doing some research online it looks like an expanding battery. Has any one else ran into this problem?  What would cause this?

    hi,
    i would go to the genius bar, thats definitely not a common problem with the iphone.
    but lithium accus are known for such problems (e.g. model flight), they can expand when there is something not working well.
    peter

  • Sites using flash/shockwave cause Firefox to hang.

    If the shockwave flash plugin is enabled on version >22, visiting a site that contains flash content will cause Firefox to hang/react extremely slowly. I've tried disabling all add-ons with no effect.
    I'm using shockwave flash 11.2.r202.310 but it doesn't seem to matter when version of flash I use.

    Thanks for the replies guys.
    ComputerWhiz: No firewall or AV installed on my laptop.
    cor-el: Nothing works. It is the shockwave flash plugin + >=v23 that is the problem. I've tried safemode, I've completely deleted everything eg moving the .mozilla directory and started a virgin firefox with the same results.

  • Anyone know what would cause a cs5 "utilities.cpp-760"  when trying to capture video

    Software: Premiere Pro CS5 v5.0.3
    OS: Win7 Pro 64bit
    Trying to batch capture video from a Sony DSR-45 over firewire and it's worked before, but for some reason now it will cause the "Premiere pro debug event' message box with "..src\Utilities.cpp-760".
    Any one have any ideas what would cause that or where I could look for a log file or something with a little more info.
    Thanks
    Don

    Trying one of these may help
    I have NOT used either, but many say to try these for SD capture http://windv.mourek.cz/ or http://www.exsate.com/products/dvcapture/
    http://helpx.adobe.com/premiere-pro/kb/cant-capture-dv-hdv-video.html
    -and http://forums.adobe.com/message/4708997
    I have NOT used it, but many say to try this for HDV capture http://strony.aster.pl/paviko/hdvsplit.htm
    -Interrupt message #16 http://forums.adobe.com/thread/978014
    Also, you MAY need to use the Legacy Driver http://forums.adobe.com/message/2981411

  • WHat would cause this error: File not found

    Hi,
    When I want to preview my page in the browser, I get a 'Not
    Found' message: The requested URL /navius2006nl/www/cases.asp was
    not found on this server.
    What would cause that to happen. The browser displays pure
    thml pages just fine.
    Thanks for any help you might be able to offer.
    Rogier
    Rotterdam, The Netherlands

    Are you using frames? Do you have a webserver installed? Have
    you defined
    your testing server?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "RogierBos" <[email protected]> wrote in
    message
    news:f5e866$jnm$[email protected]..
    > Hi,
    > When I want to preview my page in the browser, I get a
    'Not Found'
    > message:
    > The requested URL /navius2006nl/www/cases.asp was not
    found on this
    > server.
    >
    > What would cause that to happen. The browser displays
    pure thml pages just
    > fine.
    >
    > Thanks for any help you might be able to offer.
    >
    > Rogier
    > Rotterdam, The Netherlands
    >
    >

Maybe you are looking for

  • How to create a segement in we31 for an Idoc

    Hi, How to create a segment in we31 for an IDOC . I tried its showing an error Name range violation: Name not permitted in customer system

  • I have a new ipad2 with out 3G, can I use my iPhone to teather to my iPad to get Internet?

    I have a new ipad2 with out 3G, can I use my iPhone to teather to my iPad to get Internet?

  • Subquery

    I have a question about SQL. I need to remove duplicates from result set. I need to use DISTINCT in WHERE clause with both - VARCHAR-type text field and CLOB text field. DISTINCT does not work with CLOB. I can use dbms_lob.substr with CONTAINS, but I

  • Nokia 5800 E-mail setup help

    Hello , Yes i am having difficulty in setting my phone up with email , everytime i try it fails to work , and now i am collecting email folders that i can't delete or use , but they are using up space and are rather anoying how do i delete these , An

  • Calendar page with notes image

    I have a calendar page that is based on table below: PK_ID ATTENDANCE_DATE ATTENDANCE_CODE ATTENDANCE_NOTES My table can store notes (attendance_notes) as well as a code for each calendar day. I currently show the attendance_code in the date box but