id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
11749	Preserve context objects when multiple Deferred object are passed to $.when()	gravof	jaubourg	"A typical use case would be to retrive the url of each ajax request after multiple of them have been passed to $.when()

	{{{#!js
	$.when($.ajax(url1), $.ajax(url2)).done(function() {
		this[0].url // should equal to url1
		this[1].url // should equal to url2 
	})
	}}}

I'm not sure about `this` being an array, I just made it up, but I guess we should provide a way to let users access the context object of each Deferred object passed to `$.when()`"	enhancement	closed	low	1.8	deferred	1.7.2	fixed		jaubourg		
