To be more precise: In Opera(9.3) and IE6 / 7 this is what's happens
- The page is loaded with the css rendering - The elements in question are rendered with the jQuery plugins (here is the problem, because the user sees this rendering life ) - window.onload gets executed As far as I understand, the $(document).ready event means that the DOM is ready but that the page is not rendered yet so that you can handle your javascript before the user get the page rendered. Am I wrong? -daniEL On Dec 18, 3:28 am, "Karl Rudd" <[EMAIL PROTECTED]> wrote: > It'd be helpful if you could post a URL with an example page where the > problem happens. There's a number of things that can come into play, > though it's usually something to do with a large amount of elements > being modified via JavaScript. > > Karl Rudd > > On Dec 18, 2007 4:54 AM, Daniel Keel <[EMAIL PROTECTED]> wrote: > > > > > Hello, this is my first post. > > > I'm working with jQuery since a month and I have one problem. The $ > > (document).ready event doesn't work properly, manly I get the fouc in > > IE and Opera. As far as I have red the Dean Edwards solution (http:// > > dean.edwards.name/weblog/2006/06/again/) is implemented in jQuery ($ > > (document).ready ). For now I'm fixing this issue loading a css > > dinamically that contains a class to hide the elements that trigger > > fouc. > > > My main question is, does the $(document).ready include the Dean > > Edwards solution? > > Second question: Someone else experienced the fouc issue as I do? If > > yes, which approach was taken? > > > Thanks in advance for your help and time. > > > daniEL

