Why the following code only appends the first div i add and not all of them? (i stripped some code for the sake of argument).
Any tips on how to dynamically construct some nested divs with jquery are welcome.
var divRow;
var nRow = 0;
var i = 0;
$.each(data, function (key, value) {
nRow++;
div.append("<div id='divRow" + nRow + "' style='position: relative; float: left; '></div>");
divRow = $('divRow' + nRow);
divRow.append("<div id='divBox" + i + "' style=position: relative; clear: both; padding: 5px'></div>");
var divBox = $('divBox' + i);
divBox.append("<div style='position: relative; clear: both; padding: 5px'>" + value.Word + "</div>");
divBox.append("<div style='position: relative; clear: both; padding: 5px'>" + value.Description + "</div>");
i++;
});
datathere? – Pablo Fernandez Aug 10 '11 at 22:19data? – yoda Aug 10 '11 at 22:20