Do they all come through? You realise that the AJAX responses aren't
guaranteed to "return" in order.

Karl Rudd

On Thu, Aug 28, 2008 at 12:00 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote:
>
> I think I've found a bug in jquery in IE7 and safari, seems fine in
> FF3.
>
> Try running this code in IE7. The alerted index comes out randomly
> incremented.
>
> $(function() {
> var dataItem = $('li');
>            $(dataItem).each(function(i,item){
>                $.ajax({
>                    url: '/ajax',
>                    type: "POST",
>                    data: "getTPL=true&tplPath=product/
> personalise_new~personalise_frames_item",
>                    success: function (msg){ alert(i);},
>                    timeout: 3000
>                });
>
>            });
> });
>
>

Reply via email to