var username = $("#username"),
password = $("#password"),
allFields = $([]).add(username).add(password);
What is allFields? What is $([])?
Being a newbie to Javascript/jQuery, I've never seen this $([]) notation before and I'm interested in its associated methods.
Given that its "$([])", it's tricky to search for. And a Google search of arrays in Javascript (guessing that thing is an array of some sort) yields the typical arrays I'm familiar seeing.
So what is $([])? Can anyone point me to some documentation? I'm interested in learning how to use this strange thing.

allFields = $([username, password])would be an eqiuvalent statment. If you didn't need an array extended by jQuery, then justallFields = [username, password]would do. – Chris Shouts Aug 27 '10 at 19:17$([username[0], password[0]])unfortunately. – Crescent Fresh Aug 27 '10 at 20:11