I need to do an image array for a gallery, The gallery has around 10-20 images I'm just unsure on how to actually make an image array in jQuery.
Any help would be greatly appreciated.
Put the images in <div class="some_img">, and then:
var m = []
$('.some_img').each(function() { m.push ($(this));});
Don't actually use that code; format it first, but, that's the general idea.
$('.some_img').get() will return an Array of all the matched HTMLElements.