---
title: "jQuery Callback Functions"  
description: "jQuery Callback Functions"  
author: "Norman Reedus"  
published: 2016-03-28  
updated: 2016-03-28  
canonical: https://www.mindstick.com/forum/34086/jquery-callback-functions  
category: "jquery"  
tags: ["jquery"]  
reading_time: 1 minute  

---

# jQuery Callback Functions

We want to use call back [function in jquery](https://www.mindstick.com/forum/157818/what-is-the-purpose-of-the-each-function-in-jquery-explain-with-an-example). How to use this Please help me.

## Replies

### Reply by Anonymous User

```
<!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>   <title>The jQuery Callback Example</title>    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script><script>    $(document).ready(function () {        $("button").click(function () {            $("p").hide("slow", function () {                $('#callback').html("Function Callback");            });        });    });</script></head><body>     <button>Click</button><p>In computer programming, a callback is a piece of executable code that is passed as an argument to other code.</p>    <div id="callback"></div></body></html>
```

![jQuery Callback Functions](https://www.mindstick.com/mindstickforums/f55a0176-55bf-40df-979e-292be111529a/images/5b4b45f0-6041-4d8c-b62e-d806393526a1.png)


---

Original Source: https://www.mindstick.com/forum/34086/jquery-callback-functions

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
