I noticed in the jQuery docs that as of 1.4, calling $() with no args just returns an empty set rather than $(document). http://api.jquery.com/jQuery/#returning-empty-set
So, is there no other shorthand for $(document)?
I ask because I can't decide which is uglier if I'm trying to select an element by an ID that I have in a variable: $("#" + myID) or $(document).find(myId).
Thanks.
myIdjust contains the ID and not a#, then$(document).find(myId)won't work. It would need to be$(document).find('#'+myId). Also, I don't think$('#'+myID)is ugly. – Rocket Hazmat Apr 11 '11 at 16:31