Hi,
I am calling a jsonp webservice in the following way:
$.ajax({
dataType: 'jsonp',
url: '
http://json-time.appspot.com/timezones.json',
success: function (data) {
alert(data.length);
//some more code here .....
},
});
This returns only an array, no hashes:
[
"Africa\/Abidjan",
"Africa\/Accra",
"Africa\/Addis_Ababa", etc.....
Is there a way to inject this into html using chain.js ?
Thanks for your advice
Rusco.