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(){
    $("p.button").hide("slow", function(){
        alert("Front end Interview QUESTIONS and ANSWERS");
    });
});



Discussion

No Comment Found