Hi,

Calling two ajax request and rendering the values of both request  in
the  same  page.

One request takes more time.

The result page is rendered  only with  one ajax request. Values of
the request taking more time is not rendered.

But the same code works in IE7.

Code:
var myAjax = new Ajax.Updater(
                                        {success: 'advtResult'},
                                        advtResultUrl,
                                        {
                                                method: 'get',
                                                parameters: advtParameters,
                                                onFailure: reportError,
                                                asynchronus: true
                                        } );
var myAjax1 = new Ajax.Updater(
                                        {success: 'carRentalResult'},
                                        carRentalResultUrl,
                                        {
                                                method: 'get',
                                                parameters: carRentalParameters,
                                                onFailure: reportError,
                                                asynchronus: true
                                        });


Thanks & regards,
T.D.Balakrishnan




--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to