Estou recebendo a mesma mensagem do exercício anterior com ajax.
Não funcionou nenhum dos dois utilizando o código que vocês forneceram no exercício.
Mensagem: 'O método getPreventDefault() não deve mais ser usado. No lugar, use defaultPrevented.'
Código:
$('#botao-atualiza').click(function() {
$.get('http://mirrorfashion.caelum.com.br/treinamentos', function(retorno) {
$.each(retorno.treinamentos, function() {
var treinamento = this;
$('<li>').css('color', 'green').text(treinamento.nome).appendTo('#lista');
});
} , 'jsonp');
});