[Proto-Scripty] Re: How to stop MS Internet Explorer from rendering hidden divs when page loads

2009-02-04 Thread Richard Quadling
2009/2/3 T.J. Crowder : > > Hi, > > If you apply the class names correctly, it won't flash on load. > > Obviously, you can do it with inline style as Richard suggested. I > tend to avoid inline style, instead prefering to mark content with > classes relevant to its structural purpose and then app

[Proto-Scripty] Re: How to stop MS Internet Explorer from rendering hidden divs when page loads

2009-02-03 Thread T.J. Crowder
Hi, If you apply the class names correctly, it won't flash on load. Obviously, you can do it with inline style as Richard suggested. I tend to avoid inline style, instead prefering to mark content with classes relevant to its structural purpose and then apply styling to that structure. FWIW, -

[Proto-Scripty] Re: How to stop MS Internet Explorer from rendering hidden divs when page loads

2009-02-03 Thread shetc
Richard, it worked! Thanks very much (and I hope you are not snowed in either :-)) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to prototype-sc

[Proto-Scripty] Re: How to stop MS Internet Explorer from rendering hidden divs when page loads

2009-02-03 Thread shetc
Hi T.J., Thanks for replying! I tried your suggestion but I'm still seeing the flash at page load time. Hope you are not snowed in :-) Steve --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.

[Proto-Scripty] Re: How to stop MS Internet Explorer from rendering hidden divs when page loads

2009-02-03 Thread Richard Quadling
2009/2/3 T.J. Crowder : > > Hi, > > Use a class name to hide them, then remove the class name to show > them. > > E.g., in the html: > > ... > > In the CSS: > > .blarg { >display: none; > } > > When you want to hide one, use addClassName to add the class; when you > want to show it, remove th

[Proto-Scripty] Re: How to stop MS Internet Explorer from rendering hidden divs when page loads

2009-02-03 Thread T.J. Crowder
Hi, Use a class name to hide them, then remove the class name to show them. E.g., in the html: ... In the CSS: .blarg { display: none; } When you want to hide one, use addClassName to add the class; when you want to show it, remove the classname. HTH, -- T.J. Crowder tj / crowder softw