I have a problem with the ajax return with jsonp, it returns json, but I can not work with it.
Code:
$.ajax({
method: "GET",
url: "http://minasul.tecnologia.ws/previsao/index.php?tipo=TODAS",
async: false,
contentType: "application/json",
dataType: 'jsonp',
success: function(json) {
//QUANDO USO O SUCCESS, ELE NÃO ENTRA AQUI NESSE BLOCO
//QUANDO USO O COMPLETLE, ELE ENTRA, MAS NÃO CONSIGO TRABALHAR COM O JSON
}
});