selects all elements
ec 1.0+
everything (all elements including head, body, etc)
$('*')
everything that's an image (see :image)
$('*:image')
everything that's a child of #test
$('#test').find('*')