I declared an array variable els = []; in which I want to save jquery elments that are created at some point during certain events:
els[file.id] = $('<li></li>'); $('body').append(els[file.id]);
file.id is a unique identifier created by the plupload script that I use (event from it)
But it does not work, the array is always empty ...
source share