Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery $.when() with variable arguments

Tags:

I want to send [1, n) AJAX-requests to the server and after all have returned a result a modal dialog should be closed. $.when(a(), b(), c()) would be perfect, but I don't know how to pass the variable count of functions to $.when as parameter. Any ideas how to solve this problem?

like image 704
Botic Avatar asked Nov 04 '11 15:11

Botic


1 Answers

Call the functions and add their return values to an array. Then call $.when passing the array as argument like so:

$.when.apply($, array)

See Function.prototype.apply [MDN] for more information and my answer here for an extended example.

like image 155
Felix Kling Avatar answered Sep 19 '22 13:09

Felix Kling