What is the difference between $(\"*\", $(\"#container1\")) and $(\"#container2\").find(\"*\")?. I usually use AA, but not well in that case can be mo
$(\"*\", $(\"#container1\"))
$(\"#container2\").find(\"*\")
I believe the context selector must implicitly call find() itself.
Best to just use find() for simplicity.
EDIT: source code from 1.3.2:
// HANDLE: $(expr, [context]) // (which is just equivalent to: $(content).find(expr)