How to Quickly Open a Link in a New Tab in React

Last updated on August 27, 2023
How to Quickly Open a Link in a New Tab in React

To open a link in a new tab in React, create an anchor (<a>) element and set its target attribute to _blank, e.g., Link. The _blank value specifies that the link should be opened in a new tab.

For example:

App.js

export default function App() {
  return (
    <div id="app">
      <a href="https://wp.codingbeautydev.com" target="_blank" rel="noreferrer">
        Coding Beauty
      </a>

      <br />
      <br />

      <a
        href="https://wp.codingbeautydev.com/blog"
        target="_blank"
        rel="noreferrer"
      >
        Coding Beauty Blog
      </a>
    </div>
  );
}

The target property of the anchor element specifies where to open the linked document. By default target has a value of _self, which makes the linked page open in the same frame or tab where it was clicked. To make the page open in a new tab, we set target to _blank.

We also set the rel prop to noreferrer for security purposes. It prevents the opened page from gaining any information about the page that it was opened from.

Clicking the link opens the URL in a new tab.
Clicking the link opens it in a new tab.

We can use the window.open() method to programmatically open a link in a new tab in React, e.g., window.open(url, '_blank', 'noreferrer').

For example:

App.js

import { useRef, useEffect, useState } from 'react';

export default function App() {
  const [timeLeft, setTimeLeft] = useState(3);
  const interval = useRef();

  useEffect(() => {
    interval.current = setInterval(() => {
      // Decrease "timeLeft" by 1 every second
      setTimeLeft((prev) => prev - 1);
    }, 1000);

    return () => clearInterval(interval.current);
  }, []);

  useEffect(() => {
    // Open the link in a new tab when the countdown ends
    if (timeLeft === 0) {
      clearInterval(interval.current);

      // 👇 Open link in new tab programmatically
      window.open('https://wp.codingbeautydev.com', '_blank', 'noreferrer');
    }
  }, [timeLeft]);

  return (
    <div>
      The link will open in <b>{timeLeft}</b> second(s)
    </div>
  );
}
The link is opened in a new tab when the countdown ends.
The link is opened in a new tab when the countdown ends.

We use the open() method of the window object to programmatically open a link in a new tab. This method has three optional parameters:

  1. url: The URL of the page to open in a new tab.
  2. target: like the target attribute of the  element, this parameter’s value specifies where to open the linked document, i.e., the browsing context. It accepts all the values the target attribute of the  element accepts.
  3. windowFeatures: A comma-separated list of feature options for the window. noreferrer is one of these options.

Passing _blank to the target parameter makes the link get opened in a new tab.

Being able to open a link in a new tab programmatically means that we can use a button in place of an anchor link to open a URL on click. We'll just set an onClick event listener on the button element and call the window.open() method in the listener.

For example:

App.js

export default function App() {
  const openInNewTab = (url) => {
    window.open(url, '_blank', 'noreferrer');
  };

  return (
    <div>
      <p>Visit wp.codingbeautydev.com in a new tab</p>

      <button
        role="link"
        onClick={() => openInNewTab('https://wp.codingbeautydev.com')}
      >
        Visit
      </button>
    </div>
  );
}

See also