How to Use jQuery to Dynamically Open Links in New Tabs
Even if you’re a new or beginning developer, you probably know that you can easily make links open in new tabs by using the target attribute with your anchor tags. To make a link open in a new tab, all it takes is to make your HTML look like this: <a href="/link/" target="_blank"></a> The target=”_blank” […]

