Prior to making a reservation, please ensure your RV meets the Type and Total Length requirements for this campsite. If your Total Length (with tow vehicle) exceeds this campsite’s restriction, you will be expected to unhook your tow vehicle.
An RV is needed to reserve an RV Campsite. Tent Campsites are available to non-RVers (Apr-Nov).
jQuery( function ( $ ) {
$(document).ready(function() {
console.log('page load')
seasonal_price();
});
$(document).ajaxComplete(function() {
console.log('ajax load')
});
function seasonal_price() {
let month = new Date();
const off_season = [0,1,2,10,11];
if ($.inArray(month, off_season) == -1) {
$('.hb-tr-season-2').addClass('d-none');
console.log('off season')
} else {
$('.hb-tr-season-1').addClass('d-none');
console.log('on season')
}
}
})