Possible Duplicate:
What is the meaning of “$” sign in javascript
This may be a basic question, but I dare ask.
While I was navigating javascript codes, I found the following.
if(selected_len == all_len) {
$(":checkbox:checked.node_id_"+d.nodeValue).click();
}
I tried to search what $("") means, but all I found is
"$('hello') --- This is a function declared by many JavaScript frameworks as an extension of document.getElementById."
Could you give more precise explanation, as if you talk to a child :)