\[code\]$(document).ready(function(){ *POPULATE PAGE WITH DIVS*});\[/code\]I found a question very similar to mine and someone answered to just paste a ton of divs inside the html but I do not want to do this.\[code\]<body> <div class="container"> <div class="square"></div> </div></body>\[/code\]That's my HTML, I want to use javascript / jQuery to add divs of class square until the page is filled.Something along the lines of:\[code\]for(i=0; i<100; i++){ $('.container').add('.square');}\[/code\]I just can't seem to get the syntax right. Thanks!