I have the following situation, what I want to know is how I go about creating the objects (since I have no idea how many there will be):
jQuery.each($itemList, function() {
<something> = new ItemObject(this[1], this[2]);
});
Can something be an array? If so, do I use .push? or is there a better way of doing this?