I tried using this statement:
$("td", calendar).getElementsByClassName("today")
but I kept getting the error that getElementsByClassName is not a function.
$("td", calendar)
gives back an array of "td"'s. Is it possible to access the "today" "td" only using one line, or is a some kind of iteration necessary?