Search
 
SCRIPT & CODE EXAMPLE
 

JAVASCRIPT

debounce

function debounce(func, timeout = 300){
  let timer;
  return function(...args) {
    if (timer) {
      clearTimeout(timer);
    }
    
    timer = setTimeout(() => {
      func.apply(this, args);
    }, timeout);
  };
}
Comment

debounce function

function debounce(func, wait, immediate) {
  // 'private' variable for instance
  // The returned function will be able to reference this due to closure.
  // Each call to the returned function will share this common timer.
  var timeout;

  // Calling debounce returns a new anonymous function
  return function() {
    // reference the context and args for the setTimeout function
    var context = this,
      args = arguments;

    // Should the function be called now? If immediate is true
    //   and not already in a timeout then the answer is: Yes
    var callNow = immediate && !timeout;

    // This is the basic debounce behaviour where you can call this 
    //   function several times, but it will only execute once 
    //   [before or after imposing a delay]. 
    //   Each time the returned function is called, the timer starts over.
    clearTimeout(timeout);

    // Set the new timeout
    timeout = setTimeout(function() {

      // Inside the timeout function, clear the timeout variable
      // which will let the next execution run when in 'immediate' mode
      timeout = null;

      // Check if the function already ran with the immediate flag
      if (!immediate) {
        // Call the original function with apply
        // apply lets you define the 'this' object as well as the arguments 
        //    (both captured before setTimeout)
        func.apply(context, args);
      }
    }, wait);

    // Immediate mode and no wait timer? Execute the function..
    if (callNow) func.apply(context, args);
  }
}

/////////////////////////////////
// DEMO:

function onMouseMove(e){
  console.clear();
  console.log(e.x, e.y);
}

// Define the debounced function
var debouncedMouseMove = debounce(onMouseMove, 50);

// Call the debounced function on every mouse move
window.addEventListener('mousemove', debouncedMouseMove);
 Run code snippet
Comment

PREVIOUS NEXT
Code Example
Javascript :: javascript Compare two arrays regardless of order 
Javascript :: mongodb add key value to all documents 
Javascript :: jquery chrome extension 
Javascript :: js associative array push 
Javascript :: read url param data in javascript 
Javascript :: javascript check if property exists in object 
Javascript :: hammer js cdn 
Javascript :: how to generate a random salt in nodejs 
Javascript :: chart js delete old chart 
Javascript :: how to get variable value outside function in javascript 
Javascript :: javascript insert html before element 
Javascript :: how to link js and a html file in vscode 
Javascript :: how to remove particular value in dictionary in nodehs 
Javascript :: array.from js 
Javascript :: toastr.success 
Javascript :: process.env 
Javascript :: convert int to timestanp js 
Javascript :: get element by id inside first element by class in JavaScript 
Javascript :: npm sendgrid 
Javascript :: js regex for password 
Javascript :: set datatable with jquery success return value 
Javascript :: vue 3 router redirect 
Javascript :: sort li elements with js 
Javascript :: reverse json.stringify 
Javascript :: js seconds to time 
Javascript :: react native picker 
Javascript :: how to get array from object in javascript 
Javascript :: js delete json element 
Javascript :: change js 
Javascript :: sort array of objects javascript by key value 
ADD CONTENT
Topic
Content
Source link
Name
6+8 =