So i have a simple task, get an xml feed from a server that is not ours. easy enough, however im running into allow origin control issues and the &callback= tag isnt solving the issue.
$.get("http://www.buytopia.ca/feed",data,jloop(),"xml");
function jloop(){
var count=0;
//dummy code
document.write("please work");
do{
document.write(count);
count++;
}
while (count<10);
};
so when i run this, the get call is pending, not retieving. ive tried different feeds, like NASA but adding the &callback= doesnt remove access origin problems. All i need is a working chunk of code to get the feed, preferably to that buytopia.ca feed because we have access to it and know its permission info. Then i can begin to parse it. Any help would be great! thanks!
&callback=
is for JSONP, not XML.