Código:
function calendarios(elements){
this.victima=elements['victima']||'';
$.ajax({
url: "http://www.miurl.com/api.php"
})
.done(function( msg ) {
console.log(this.victima);
}
});
}
}
¿Como puedo acceder a this.victima desde el .done?



