First page Back Continue Last page Image

Popular Selector Examples

The Tag Selector

The CSS ID Selector

The CSS class Selector

$("h1")

Select all h1 tags in the document

$("#footer")

Select the object with the ID “footer”

$(".nav")

Select all objects with the class “nav”