jQuery Tutorial plus Question:

Download Job Interview Questions and Answers PDF

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

jQuery Interview Question
jQuery Interview Question

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 Interview Questions And Answers PDF

Previous QuestionNext Question
Explain the features of jQuery?Why is jQuery better than JavaScript?