How is it possible to generate ids in a loop, current I have something like this but did not work:
for(var i=1;i<10;i++)
$("#input-themen-word'+i+'").fileinput({
....
});
In the end it should generate ids like:
#input-themen-word1
#input-themen-word2
#input-themen-word3
#input-themen-word4
#input-themen-word5 ....