js

JavaScript xhr Request

/** * JavaScript Request with Error Handling * Author: Knol Aust * Gist Keywords: js, javascript, http request, error handling… Read more »

Stops css animation resize jank.

.animation-stopped * { animation: none !important; transition: none !important; } /* JS */ let resizeTimer; window.addEventListener("resize", () => { document.body.classList.add("animation-stopped");… Read more »