Try this code:

$.getJSON("http://www.panoramio.com/map/get_panoramas.php?
order=popularity&set=public&from=0&to=20&minx=-180&miny=-90&maxx=180&maxy=90&size=medium&callback=?",
    {},
    function(data) {
        $(data).each(function(i, item) {
            alert($(this)[0].photos[i].photo_id);
        })
    }
);

See if it helps :)

On Dec 29, 8:30 pm, buaziz <bua...@gmail.com> wrote:
> its basically the panoramio url
>
> given here
>
> http://www.panoramio.com/api/
>
> sample query :
>
> http://www.panoramio.com/map/get_panoramas.php?order=popularity&set=p...
> --
> View this message in 
> context:http://www.nabble.com/jQuery.getJSON-Current-Url-Prefixed-tp21201707s...
> Sent from the jQuery General Discussion mailing list archive at Nabble.com.

Reply via email to