Hi I found how to add a link to a classic feature box. I’ve got that working now but now I’d like to have one of my feature boxes open to a new window. Here is my homepage:
The code I’ve put in the ‘Page JS’ for the photobooth feature box to make this link work looks like this:
jQuery(document).ready(function($) {
jQuery(".photobooth-service .x-feature-box-graphic").click(function() {
window.location = “https://thebigpicturephotobooth.com”;
});
});
How can I make that link open to a new tab/window?
Thanks!