How to Create Callback Function in jQuery
Example:-
<html>
<head>
<title>Callback Function in jQuery</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("p").hide("slow", function(){
alert("The paragraph is now hidden");
});
});
});
</script>
</head>
<body>
<button>Click to Hide</button>
<p>Welcome to Hub of Tutorials.</p>
</body>
</html>
Read Full article
Comments
Post a Comment