Am trying to make a get request from javascript, with a function called geturl.
So if i prepare my querys and add it in to an array, and looping throw that executes just one request.
how can do that without a for loop? perhaps doing something with the array?
for (var i=0; i<urls.length; i++)
{
url[i] = urls[i].value;
}
geturl(url);
if you are using a javascript framework you could do something along the lines of:
jQuery each documentation