Hi I am using uploadify and after the images are uploaded I wish to re-initailize the options so that the queuelimit is set to the remaining number of images.
The question is is there a way of reinitalizing the options of a plugin that is set up on document.ready only once. E.g
$().ready(function(){
var options ={count:5}
$("div").someplugin(options);
});
the count will change after the ajax call and the new count should be used.
Have tried to use a function for count like {count:function(){}}
does not work.
Thanks in advance for any answers.