jQuery — Callbacks

John Au-Yeung
3 min readDec 30, 2020
Photo by Icons8 Team on Unsplash

jQuery is a popular JavaScript for creating dynamic web pages.

In this article, we’ll look at how to using jQuery in our web apps.

callbacks.disable()

We can call callbacks.disable to disable a callback.

For example, if we have:

const foo = function(value) {
console.log(`foo: ${value}`);
};

--

--