I need to be able to get the width of elements from an array
HTML
--------
You can use .eq function like below,
.eq
$array.eq(2).width()
DEMO: http://jsfiddle.net/8zvkn/2/
$array[2] - returns DOM element but what you need is the jQuery object which has the .width function.
$array[2]
.width