This is an odd one..
The followings are taking place well after the page has been loaded. I'm trying to add a class to a known (I know the element's id) DOM element.
$('#day-08-07-2016')
However, this returns back a jQuery function, not the DOM element.

Since the selector is an Id and there is only one element on the page, i can't use the [0] or first() functions.
Ultimately, the followings doesn't work!
$('#day-08-07-2016').addClass('active')
The element clearly exists on the page.
What am I doing wrong?
id="foo"andid="#foo"are different things.$('#foo')searches forid="foo"- but you haveid="#foo". The element you're looking for doesn't exist.