How do I retrieve a specific object in a jquery array to do jquery with it?
- by Chris
Hiya,
I have a simple set of images nested in a div tag, I'm just wondering how I can chose an item with a specific index programatically?
var n = new Array();
n.push(a);
n.push(b);
n.push(c);
n[1]; // b
How do I do this in JQuery?
Thanks