Prepare Interview

Mock Exams

Make Homepage

Bookmark this page

Subscribe Email Address

jQuery%20Interview%20Questions%20and%20Answers

Question: Explain the concepts of "$ function" in jQuery with an example?
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() {}
});
Is it helpful? Yes No

Most helpful rated by users:

©2024 WithoutBook