Explain the concepts of "$ function" in jQuery with an example?
3447
08-Sep-2012
AVADHESH PATEL
08-Sep-2012$("a").click(function() {});
$.ajax({
url: "someurl.php",
success: function() {}
});
$ is anonymous of jquery
ex : $("a") or
jquery("a") both are equal