Comments Boost87 started the conversationAugust 13, 2020 at 7:32amHelloIs there a way to open the social media icons in a new tab? So the link to Facebook or Instagram? These are the icons in the topbar in the upper right corner of my page.Thanks Manuel 2,965Andrew repliedAugust 13, 2020 at 11:23amHi there, Use the following Custom JS code. <script type="text/javascript"> jQuery( document ).ready(function() { jQuery('a').attr('target', '_blank'); }); </script> You can add the Custom JS code in here : Thanks Boost87 repliedAugust 13, 2020 at 11:39amAmazing. Thank you!Boost87 repliedAugust 13, 2020 at 2:30pmNow i have a other problem. Now it also opens all other pages from the main menu in a new tab. 2,965Andrew repliedAugust 14, 2020 at 8:36amHi there, Please replace the previous JS code with this one <script type="text/javascript"> jQuery( document ).ready(function() { jQuery('#header-secondary-outer .sf-menu a').attr('target', '_blank'); }); </script> ThanksBoost87 repliedAugust 14, 2020 at 9:03amGreat, thank you. Have a nice weekendBest regards,Manuel Sign in to reply ...
Hello
Is there a way to open the social media icons in a new tab? So the link to Facebook or Instagram? These are the icons in the topbar in the upper right corner of my page.
Thanks Manuel
Hi there,
Use the following Custom JS code.
You can add the Custom JS code in here :
Thanks
Amazing. Thank you!
Now i have a other problem. Now it also opens all other pages from the main menu in a new tab.
Hi there,
Please replace the previous JS code with this one
Thanks
Great, thank you. Have a nice weekend
Best regards,
Manuel