I receive the folowing jsonp through a jQuery call :
DisplayDates({"dates":[ "10\/2012","9\/2012"]})
when I try display to the array in Firefox / Chrome, 'dates' only has 1 item "9/2012".
I have no clue why. I suppose the json is not properly formated but what should it be ?
My test code is :
function DisplayDates(data) {
console.log(data);
}
$(function () {
$.ajax({
type: 'GET',
url: 'http://url?alf_callback=DisplayDates',
dataType: 'jsonp'
});
});
EDIT:
I added other items and they appear. The only item not appearing is "10\/2012". Why ?