Ver Mensaje Individual
  #1 (permalink)  
Antiguo 10/12/2015, 13:20
Avatar de juanito1712
juanito1712
 
Fecha de Ingreso: mayo-2010
Ubicación: Valencia
Mensajes: 1.124
Antigüedad: 14 años
Puntos: 66
Acceder a una variable

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?