The Cheatsheet

Here are a few aspects of HTML, CSS, JavaScript, SVG and general code-jargon that may be of assistance, even if it’s just helping with terms and concepts to Google.

General Tips

HTML

CSS

JavaScript

SelectorSelects
$("#bob") The element with id="bob"
$(".pink") All elements with class="pink"
$(".pink,.blue") All elements with class="pink" or class="blue"
$("div") All <div> elements
$("div,p,svg") All <div>, <p> and <svg> elements

SVG

General Terms & Concepts