document.getElementById().getElementByTagname("input")document.querySelector('.class')//return firstdocument.querySelectorAll('.class')//return NodeList(not array so no forEach?)
document.formsdocument.forms.myformdocument.theform([name of form])
JQuery
$( '#header' ); // select the element with an ID of 'header'$( 'li' ); // select all list items on the page$( 'ul li' ); // select list items that are in unordered lists$( '.person' ); // select all elements with a class of 'person'