Wednesday 27 April 2022

jQuery Callback Functions

jQuery Callback Functions

JavaScript statements are executed line by line. However, with effects, the next line of code can be run even though the effect is not finished. This can create errors.

To prevent this, you can create a callback function.

A callback function is executed after the current effect is finished.

Typical syntax: $(selector).hide(speed,callback);

Examples

The example below has a callback parameter that is a function that will be executed after the hide effect is completed:


<!DOCTYPE html>

<html>

<head>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/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>Hide</button>


<p>This is a paragraph with little content.</p>


</body>

</html>


2)example without callback :-


<!DOCTYPE html>

<html>

<head>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>

<script>

$(document).ready(function(){

  $("button").click(function(){

    $("p").hide(1000);

    alert("The paragraph is now hidden");

  });

});

</script>

</head>

<body>


<button>Hide</button>


<p>This is a paragraph with little content.</p>


</body>

</html>

 

No comments:

Post a Comment