Adding a Scroll to Top Button Without JavaScript
I was using a plugin for my scroll to top button, but I've now replaced that with a simple HTML/CSS solution that doesn't use any JavaScript. Here's how... (more…)
Read more »
Web Workers are a simple means for web content to run scripts in background threads. The worker thread can perform tasks without interfering with the user interface. In addition, they can perform I/O using XMLHttpRequest (although the responseXML and chan… Read more