up vote 3 down vote favorite
share [g+] share [fb]

When I have a modal JQuery dialog open in IE8, my CPU usage goes to 100% (no, actually 50, but that's 100% of one core). If I break developer tools, it seems that it's a lot of resize events firing (I don't do any volontary resizing). Has someone else encountered this issue and knows how to fix it?

link|improve this question

65% accept rate
feedback

2 Answers

up vote 6 down vote accepted

The solution is to add this to your CSS file:

.ui-widget-overlay {
   position: fixed;
}

reference

link|improve this answer
Sorry for accepting my own answer, but I do think it is the best solution. Not supported by IE6, but IE6 has a different code path in the relevant jQuery code anyway (and I don't know if there is a problem). – erikkallen Sep 29 '09 at 19:08
This fixed it for me! Using JQuery 1.6 and JQuery UI 1.8.13. The Modal dialogs caused 100% CPU utilization in IE7. It could not determine the height of the overlay DIV that is used in the 'Modal' behavior. Adding this to the CSS fixed my issues. Thanks! – Sentient Jul 11 '11 at 17:46
feedback

I've seen things like this happen when something is filling a container at 100% width and height, and that container has overflow:auto. Which makes it bounce back and forth endlessly trying to fit in the container, but then the container adds or removes scrollbars. Don't know if this is applicable to your situation, but maybe something similar.

link|improve this answer
What do you mean with filling a container? There does appear scrollbars on the document for me when I popup the dialog, so you're probably at least partly right. However, the body is not even close to filled with things. – erikkallen Sep 26 '09 at 8:14
I mean when an inner element is the same size as (or slightly bigger than) a parent element. If you're seeing scrollbars, then it looks like this is happening to you. You need to find out what which element is doing this, and style it so it remains smaller than the parent element. The CPU usage is due to the repeated reflow that occurs when scrollbars are added and removed repeatedly. You might consider simply setting the body to overflow:hidden while the dialog appears, then back to whatever it was after it's closed. – lod3n Sep 26 '09 at 19:34
Thanks. This solution works, but is a little too cumbersome (think nested dialogs). I will accept it if nobody comes up with a better idea. – erikkallen Sep 26 '09 at 20:26
Again, the only thing which takes up 100% (or even close to that) of the body is the dialog overlay. – erikkallen Sep 26 '09 at 20:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.