});
var headerVideo = document.getElementById('front-page-video');
- // if (headerVideo) {
- // headerVideo.play();
- // }
-
if($(window).width() > 1024){
$(headerVideo).attr("controls",false);
- console.log(Modernizr);
}
+
+ var loc = window.location.href; // returns the full URL
+ if(/regions/.test(loc)) {
+ $('#interactive-map > li').addClass('active');
+ }
+ if(/destinations/.test(loc)) {
+ $('#dropdown-destination > li').addClass('active');
+ }
+ if(/venues/.test(loc)) {
+ $('#dropdown-venues > li').addClass('active');
+ }
+
});
});
var headerVideo = document.getElementById('front-page-video');
- // if (headerVideo) {
- // headerVideo.play();
- // }
-
if($(window).width() > 1024){
$(headerVideo).attr("controls",false);
- console.log(Modernizr);
}
+
+ var loc = window.location.href; // returns the full URL
+ if(/regions/.test(loc)) {
+ $('#interactive-map > li').addClass('active');
+ }
+ if(/destinations/.test(loc)) {
+ $('#dropdown-destination > li').addClass('active');
+ }
+ if(/venues/.test(loc)) {
+ $('#dropdown-venues > li').addClass('active');
+ }
+
});