Hi All,
I'm using Prototype for a small wizard-like display within a web page.
The wizard is really a checklist
for the user -- as the user checks off that he has completed a
required task then the next required task is
revealed. This all works great in FireFox -- when the page is first
displayed then only the first task to
be complete is revealed. However, in IE, the entire set of hidden
tasks is briefly displayed then hidden
when the page loads. The resultant pages looks correct but it would be
nice to get rid of the quick
flash of the hidden tasks when the page loads. I do something like the
following:
Event.observe(window, 'load', function() {
// hide uncompleted tasks
$('div0', 'div1', 'div2', 'div3'').invoke('hide');
....
}
Does anyone have any ideas on how to stop the 'IE Flash'?
Thanks in advance,
Steve
--~--~---------~--~----~------------~-------~--~----~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/prototype-scriptaculous?hl=en
-~----------~----~----~----~------~----~------~--~---