reading a tutorial of Ajax, I found a jQuery line like this:
$.get("www.nameurl.com/...", function(resp) {
alert("The reply is " + resp);
})
I'm not going to ask you explanations about Ajax and the particular meaning of this lines.
What I don't understand is that jQuery input "$.get()".
I usually read or use $(document), $(window), $(".classname") etc, but I never used a kind of formulation like $.get().
Can you provide me some explanations?