$(".bVid").on("click",function(){
$(".vidBeginner").slideDown(1000);
});
On that JS code above, Chrome console keeps telling me the first "$" is not defined. There is a class in my html file called "bVid" and it's attached to a button. I also have it in my css file that's also attached to the html file in the header. Can anyone help me?