JS: Open .js-img-hover image in a new tab on click
This commit is contained in:
@@ -31,6 +31,12 @@ $(document).ready(function() {
|
||||
$("#img-hover").remove();
|
||||
});
|
||||
|
||||
// Image hover on click
|
||||
$(".js-img-hover").click(function() {
|
||||
var url = $(this).data("img-hover");
|
||||
window.open(url, '_blank');
|
||||
});
|
||||
|
||||
// Lazy load video's
|
||||
$(window).on('resize scroll', function() {
|
||||
$('.js-video').each(function(index) {
|
||||
|
||||
Reference in New Issue
Block a user