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