What does $() mean in jQuery?
$()
It is a shorter way to write document.getElementById().
document.getElementById()
It is a utility function that selects the first element from the document.
It is a utility function that selects the last element from the document.
It is an alias to the main core method of jQuery itself—the same as writing jQuery().