I have an jQuery object with 3 members:
var elements = $(\"#\" + this.wrapperName + \">ul>li>a>img\"); Object { 0: , 1: , 2
You have to wrap it in the jquery format. Like so:
elements.each(function(index, element) { $(element).css({ "width": elemWidth, "height": elemHeight, "top": elemTop, "left": elemLeft }); }
notice the: $(element)
$(element)