I need to add multiple empty divs to a container element using jQuery.
At the moment I am generating a string containing the empty html using a loop
You can use a regular loop with the Jquery append function.
for(i=0;i<10; i++){ $('#container').append(""); }