loading an xml file from the web
Dear members of the jqueryhelpforum,
I am making a Mac Osx widget with some jquery in it, my plan is get information from an api and load that into jquery.
I worked with the $.get method before but I just don't know why it doesn't work. The page I am loading in is .xml, if i browse to that page then I get this:
Now my questions is, how do I load one of those xml tags into a variable?
So far my code looks like this:
-
var urll = "https://" + gebruikersnaam + ":"+ passwoord + "@mobilevikings.com/api/1.0/rest/mobilevikings/sim_balance.xml";
$.get(urll,{},function(xml){
});
Anyone experience with this kind of problem
?