What if I wanted to load JavaScript without executing it?
Fair enough, let’s see a couple of ways to tackle this specific problem. But first, let me clarify a couple of aspects. (more…)
Read more »
We can update the URL in JavaScript. We’ve got the APIs pushState and replaceState: // Adds to browser history history.pushState({}, “About Page”,… Read more