Saved Bookmarks
| 1. |
What is callback function in Javascript? |
|
Answer» A callback function is a function which is ACCESSIBLE by another function and invoked after the FIRST function if that first function completed. Example$("#button").CLICK(function(){ |
|