please Explain the custom callback function like
$("button").click(function(){
$("p").hide("slow", function(){
alert("The paragraph is now hidden");
});
});
such that we can pass the parameter callback;function()
such that callback is Executed at last in jquery