Hi,

i want to realize the following szenario:

1. fade div "information"
2. change content of div "information" by using AJAX and innerhtml
3. appear div "information" again

Here is my version:
------------------------------------------
$('information').fade({
          queue: 'end'});

new Ajax.Request(url, {
                queue: 'end',
                method: 'get',
                parameters: { zeitschrift_id: zeitschrift},
                onComplete: function(require) {$
('information').innerHTML = require.responseText;}});

$('information').appear({
            queue: 'end'});

In fact, anything is still processed synchronous. Can you give me any
advice for solving my problem?


Thanks in advance!

-- 
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-scriptacul...@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