InterviewSolution
Saved Bookmarks
| 1. |
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 in jquery. $(DOCUMENT).ready(function() {});$("a").click(function() {}); $.ajax({ url: "someurl.php", SUCCESS: function() {} }); The type of a function is "function". There are a lot of anonymous functions in jquery. |
|