I was told to add the below jQuery and wanted to make sure I can just copy and paste this into the custom js area? It’s for adding a css class to a booking plugin.
jQuery( “.os-day.os-month-current” ).each(function() {
if(jQuery( this ).data( “available-minutes” )){
jQuery(this).addClass(".dateavailable")
}
});