when you do $(xxxx).get() or $(xxxx)[] you get the actual element back.
so with your case, you can do $($("div.test")[2]).fadeOut()
or $("div.test:eq(2)").fadeOut()

Reply via email to