orbit4-5/app/assets/javascripts/frontend.js

8 lines
313 B
JavaScript
Raw Normal View History

2014-11-13 08:29:38 +00:00
(function($) {
$("document").ready(function(){
// Get link data-attribute and make the banner clickable
2014-12-18 12:04:38 +00:00
$('.w-ad-banner__slide').not('[data-link=""]').not(".youtube").addClass('cursor').on("click",function(){
2014-11-13 08:29:38 +00:00
window.open($(this).data("link"),"_blank");
})
})
}(jQuery));