Hi,
I used the following code to get the icon of my feature box to link to the url set in the feature box.
jQuery( document ).ready( function($){
$(".class-on-item-around-feature-box").each( function( ) {
var link_value = $($(this).find(“a”).get(0)).attr(“href”);
var link_element = ‘’;
$(this).find(’.x-feature-box-graphic’).wrap(link_element);
});
});
How can I change the code to make the link open in a new tab?
Thank you!
