forked from saurabh/orbit4-5
8 lines
297 B
JavaScript
8 lines
297 B
JavaScript
|
(function($) {
|
||
|
$("document").ready(function(){
|
||
|
// Get link data-attribute and make the banner clickable
|
||
|
$('.w-ad-banner__slide').not('[data-link=""]').addClass('cursor').on("click",function(){
|
||
|
window.open($(this).data("link"),"_blank");
|
||
|
})
|
||
|
})
|
||
|
}(jQuery));
|