I have this url which brings back the yahoo time…im guessing the PST
so i need to get this value with javascript…here is my code
$j.ajax({
type: "GET",
url: "http://developer.yahooapis.com/TimeService/V1/getTime?appid=YahooDemo&output=json",
dataType: "jsonp",
complete: function(data){
console.log(data);
}
});
but i cant seem to pull out that Timestamp out of the json…what am I doing wrong
I think you want to use the
successcallback: