Search
Displaying 71 - 80 of 965
HTTP Protocol
Class
The Hyper Text Transfer Protocol (HTTP) is the protocol for requesting and transmitting web content.
HTML Forms
Class
Forms allow users to enter data, making your site interactive.
They could be performing a search, logging in, signing up...
Styling input pseudo elements.
An extensive guide to browser differences with the range input, and how to style them.
Manifest.json for content script
Project update
Web extensions use a manifest.json file for configuration.
First we need to set up the site to load the script for.
"conte...
Loops and Iteration
Resource
MDN guide to javascript loops.
There are different ways to loop through tings.
Javascript Loops
Class
Repeat things or process a list.
for (const item of items) { saveData(item); } items.forEach(item => { saveData(item); })...
Debugging Javascript
Class
Tips and tricks for developing javascript code.
JS will execute when loaded in the browser or called via node. When...