> The only idea I have is:
> kraje_n.push(adres, function(){
> alert(kraje_n);
> });
> but it doesn't work:/
No it wouldn't, .push() doesn't have a callback function of its own.
Try -
...
kraje_n.push(adres);
alert(kraje_n);
}
...
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Maps API" 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/Google-Maps-API?hl=en
-~----------~----~----~----~------~----~------~--~---