Javascript

Home Load Console Selectors CSS Form Strings If Else Array Reg Exp Date & Time setTimeout JSON Loops Objects Animation Fat Arrow Class Import IIFE undefined Tabulator.js ES6 Event Listeners AJAX Hide Elements Create Elements Checkbox ejs
O O

Weather Controls

Time Of Day
Rain
Wind Speed
Wind Direction
Clouds

Javascript : Selectors

2022-07-18
document.getElementById("rob")  
document.getElementsByClassName("rob")
document.getElementsByTagName("li")
document.querySelector(".rob")
document.querySelector("#rob")  
document.querySelectorAll(".rob")   //returns array
document.querySelectorAll(".#rob")  //returns array

jQuery

$("#theForm") // by id
$(".button-blue") // by class
$("li") // by tag
$("[name='foo']") //by name
$("input:checked" ) // by checked