How to open links in new tab or window using JQuery

How to open links in a new tab or window using JQuery. In this brief article, I am going to show you how to open external links on your website in a new tab using JQuery. There are situations when you actually need this because you cannot go into HTML tag directly and make the necessary changes, and the alternate way that is available for you is going by JavaScript or jQuery to open the external links in a new window/tab.

Solution

The script is very simple and straight forward, it first checks whether the link starts with “HTTP” and then it also checks whether the link contains any words that are similar to our domain name to ensure that no internal links are getting triggered in a new tab/Window when clicked. This way we’re confident that only the external links are targeted to open in new tab/window.

How to open links in new tab or window using JQuery
How to open links in new tab or window using JQuery

Use the script below and you shall be good to go. Just replace the “zaha.in” with your domain name.

https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js
<script>
$(function() {
   $("a[href^='http']:not([href*='zaha.in'])").each(function() {
       $(this).click(function(event) {
             event.preventDefault();
             event.stopPropagation();
             window.open(this.href, '_blank');
        }).addClass('externalLink');
   });
});
</script>

Did you Find it helpful? drop a line and share it forward to help others. Have a nice day.

Syed Hussaini
Syed Hussaini

With over 20 years of experience, I specialize in customer support, website development (using platforms like WordPress, Joomla, and Google Sites), IT operations, and digital asset management. I've managed teams, trained staff, and created Knowledgebase and Playbook articles. I’m known for my high productivity, independence, and strong communication skills, and I have successfully worked across diverse regions, including APAC, EMEA, Eastern time and AMER.

Leave a Reply

Discover more from My Knowledge Buddy

Subscribe now to keep reading and get access to the full archive.

Continue reading

Discover more from My Knowledge Buddy

Subscribe now to keep reading and get access to the full archive.

Continue reading