I am confused when to use the period before the class names when referencing them. In this example why does the first use of the \'active-slide\' class use a period beforehand w
$('.active-slide') is using jQuery's element selector. (add|remove)Class('active-slide'); is modifying the element.
$('.active-slide')
(add|remove)Class('active-slide');