Hi Rey,

you shouldn't use timers for this - you canot be sure when an ajaxrequest 
has finished loading. There are parameters both in the ajax-methods and in 
morph that take functions that will be called on a specific event like when 
the ajax-call has been loaded (these are called callbacks).

Check http://www.prototypejs.org/api/ajax/options section "Common callbacks" 
and http://madrobby.github.com/scriptaculous/core-effects/ for the part 
"callbacks".

A simple usage would be

new Effect.Morph( "myDiv", { style:"height:0px;",
  afterFinish: function({
    new Ajax.Request(url, {
      onSuccess: function(transport) {
        new Effect.Morph( "myDiv", { style:"height: 222px;overflow:hidden;" 
} );
      }
    });
  })}
);

There might be syntax-errors in this

-- 
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-scriptaculous@googlegroups.com.
To unsubscribe from this group, send email to 
prototype-scriptaculous+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.

Reply via email to