What’s the difference between $ and $$? It seems like they both return a list of nodes, but filter isn’t applicable to $$ and throws an exception.
What are the other differences?
What’s the difference between $ and $$ ? It seems like they both return
Share
$is a variable name.$$is a different variable name.jQuery assigns a function to the
$variable.jQuery does nothing (by default) to the
$$variable (so it will beundefinedunless something else assigns a value to it).