Values not showing up on Windows Phone
The code below feeds some labels with data.
Any idea why it is not working on a Windows Phone?
var EventsID = localStorage.getItem("EventsID")
var graphQuery = 'https://graph.facebook.com/';
var authToken = 'myToken'
var url = graphQuery + EventsID +'?access_token='+ authToken;
$.getJSON(url,function(data){
Tiggzi('mobilelabelEventsDetailName').text(data.name);
Tiggzi('mobilelabelEventsDetailDescription').text(data.description);
Code: Select all
Tiggzi('mobilelabelEventsDetailLocation').text(data.location); )}:
Code: Select all
});