JQuery Developer Question:

What are the concepts of "$ function" in jQuery with an example?

Tweet Share WhatsApp

Answer:

The type of a function is "function".
There are a lot of anonymous functions is jquery.

$(document).ready(function() {});
$("a").click(function() {});

$.ajax({
url: "someurl.php",
success: function() {}
});

Download JQuery Developer PDF Read All 51 JQuery Developer Questions
Previous QuestionNext Question
What are the features of jQuery?How jQuery Works?