Ok. I have the following jQuery code
jQuery(function(){
jQuery.get('/GalleryPage.aspx?gallery=1234', {}, function(data) {
galleryXML = data;
renderGallery(pageIndex);
}, "xml");
});
As you can see, I have 1 URL ('/GalleryPage.aspx?gallery=147'
) which I display it in “GalleryView.html”.
Now I want to show another URL/ID in the same page like so ('/GalleryPage.aspx?gallery=258'
).
Can I add the url beside each other like so
jQuery.get('/GalleryPage.aspx?gallery=1234',
'/GalleryPage.aspx?gallery=1234', {}, function(data) {
How can I display 2 URL in the same get() function????
Thanks.