Re: Is sequential updating possible in AJAX?

2007-02-04 Thread Kaste
> I mean they are updated in > sequence. But actually they are updated not IN SEQUENCE, but > SIMULTANEOUSLY. What should I do to get them displayed on the screen > in sequence? Let's consider that both contents1.php and contents2.php TWO ajax-request will give you two responses (asynchronous) fr

Is sequential updating possible in AJAX?

2007-02-04 Thread skyblueink
index.thtml link('Click', '/sparks/update', array('update' => array('first', 'second'))); ?> div first div second update.thtml div('first'); ?> divEnd('first'); ?> div('second'); ?> divEnd('second'); ?> Hello! The preceding snippet is an example of multi update, and works greatly, but in a w