No. I don’t know of any browser (or other user agent) that associates any special behaviours with link query strings. The query string is for the server receiving the HTTP request to deal with.

As you say in your question, the target attribute is the method for controlling (or at least suggesting) what window the link should open in.

Answer from Paul D. Waite on Stack Overflow
🌐
MDN Web Docs
developer.mozilla.org › en-US › docs › Web › API › Window › open
Window: open() method - Web APIs | MDN
The Window interface's open() method takes a URL as a parameter, and loads the resource it identifies into a new or existing tab or window.
🌐
ServiceNow Community
servicenow.com › community › developer-forum › what-parameters-can-be-passed-to-a-url-to-open-in-new-tab › m-p › 1986086
What parameters can be passed to a URL to open in new tab?
November 8, 2019 - if you are opening the link from server side using action.setRedirectURL() I believe you cannot mention to open in new tab · If you are using client side then that is possible · Mark Correct if this solves your issue and also mark Helpful if you find my response worthy based on the impact. Thanks Ankur · Regards, Ankur Certified Technical Architect || 9x ServiceNow MVP || ServiceNow Community Leader ... How to pass input parameters to an RPA Bot Process triggered from Flow Designer?
🌐
Inductive Automation
forum.inductiveautomation.com › ignition
In browser open a new tab via an URL passing a parameter like object/array - Ignition - Inductive Automation Forum
October 17, 2021 - Hi folks, I need to take a new step in my project that require to me to have some new perspective skills that I’ve been working on, but I need to figure out if I can do what I want. I have a project with a navigation menu and a few pages and their primary views.
🌐
Educative
educative.io › answers › how-to-open-a-link-in-a-new-tab-with-html-and-javascript
How to open a link in a new tab with HTML and JavaScript
JavaScript provides us with the window.open(URL, target) method to open a link in a new tab. We must use _blank as the second parameter of this method if we want the link to open in a new tab.
🌐
Kajabi
help.kajabi.com › all collections › website › pages › can i make my links open in a new tab?
Can I make my links open in a new tab? | Kajabi Help Center
Open the Website tab from the Dashboard. Select Navigation. Click the Edit icon next to the link you wish to edit or create a new one. Copy /"target="_blank. Place your cursor at the end of the URL and paste /"target="_blank to the end of the URL.
🌐
Moodle
moodle.org › mod › forum › discuss.php
Moodle in English: How do I make a URL open in a new tab? | Moodle.org
... First enable this "New window" by going to Admin | Plugins | Activity modules | URL and include it in the "Available display options" settings. Then it should work. ... Thank you for your reply.
Find elsewhere
🌐
Alchemer
help.alchemer.com › help › new-window
Make Sure Links Open in a New Tab/Window | Alchemer Help
In the link editor place the URL to the website you would like to link to in the URL field. On the Target tab of the link editor select New Window (_blank) from the dropdown. This will open the document in a new tab or window (depending on the respondent's browser settings) and will prevent ...
🌐
Reddit
reddit.com › r/html › coding a url to open in a new tab?
r/HTML on Reddit: Coding a URL to open in a new tab?
January 4, 2023 -

Hi all, I'm hoping this is the right place for this, but is there a way to something to a URL so that when that URL is linked or embedded somewhere, the link will automatically take them to a new tab?

I am trying to set a link in our top navigation menu on our WordPress site that uses Avada, and I don't have the option to just tell it to open that link in a new tab as a setting. So I was hoping I could set it to do so just by the link itself, but I'm not familiar enough with that to know if it is possible or not. Looking it up myself has only yielded results for "target=_blank" when doing hardcoding on the back end-something that isn't an option with the set up we have (or I'm just not aware of how to go about it).

Any help or advice is appreciated!

🌐
Attacomsian
attacomsian.com › blog › javascript-open-url-in-new-tab
Open a URL in a new tab or window on button click in JavaScript
October 12, 2022 - To open a new tab, pass _blank as a second parameter to window.open() or skip the second parameter entirely and only pass the URL. Suppose you have the following <button> tag somewhere on your web page: ... You want to ensure when the user clicks ...
🌐
Stack Overflow
stackoverflow.com › questions › 59873214 › how-to-open-a-new-tab-by-passing-some-argument-into-url
How To Open a new Tab by passing some argument into URL
A "URL" is a resource location. Ultimately the web browser program is in charge of deciding when to open new tabs. The accepted way to communicate to browsers to open a new tab is target="_blank" in the a tag as answered in the linked question.
🌐
Squash
squash.io › how-to-open-a-url-in-a-new-tab-using-javascript
How to Open a URL in a New Tab Using JavaScript
This method opens a new browser ... ways to achieve this: You can use the window.open() method with the URL you want to open as the first parameter and "_blank" as the second parameter....
🌐
CoreUI
coreui.io › blog › how-to-open-link-in-a-new-tab-in-html
How to Open Link in a New Tab in HTML? · CoreUI
February 26, 2025 - href attribute specifies: Tells your HTML parser exactly which linked URL to fetch. rel attribute: Helps define the relationship between the original page and the newly opened tab, often used for security measures.
🌐
freeCodeCamp
freecodecamp.org › news › how-to-use-html-to-open-link-in-new-tab
How to Use HTML to Open a Link in a New Tab
September 8, 2020 - It's easy to use HTML to open a link in a new tab. You just need an anchor (<a>) element with three important attributes: The href attribute set to the URL of the page you want to link to,
🌐
Medium
frontendinterviewquestions.medium.com › how-to-open-a-url-in-a-new-tab-using-javascript-ea83c70d5a94
How to Open a URL in a New Tab Using JavaScript | by Pravin M | Medium
August 9, 2024 - <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Open URL in New Tab</title> <script> function openInNewTab(url) { window.open(url, '_blank'); } </script> </head> <body> <button onclick="openInNewTab('https://www.example.com')">Open Example.com in New Tab</button> </body> </html> ... The button, when clicked, triggers the openInNewTab function. You can also use JavaScript to open a URL in a new tab based on user actions like button clicks.