I guess target="_blank" would open new tab/Windows but will switch the tab as well, and no way I can find them stuff in html, Yes but when we click in link pressing control key it opens the link in new background tab, Using javascript we can stimulate same Here is code I found

function openNewBackgroundTab(){    
    var a = document.createElement("a");    
    a.href = "http://www.google.com/";    
    var evt = document.createEvent("MouseEvents");    

    //the tenth parameter of initMouseEvent sets ctrl key    
    evt.initMouseEvent("click", true, true, window, 0, 0, 0, 0, 0,true, false, false, false, 0, null);    
    a.dispatchEvent(evt);
}
Answer from Adel Bachene on Stack Overflow
🌐
freeCodeCamp
freecodecamp.org › news › how-to-open-a-link-in-a-new-tab
How to Open a Link in a New Tab – HTML target blank Attribute Explained
May 31, 2022 - You have to think carefully about when it would be a good time to use the target="_blank" attribute. One good example would be if a user is working on a page and they don't want to leave that page if they click on a link.
Discussions

html - Open a new tab with javascript but stay on current tab using javascript - Stack Overflow
Communities for your favorite technologies. Explore all Collectives · Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work More on stackoverflow.com
🌐 stackoverflow.com
I want to open a new tab using javascript. But I should not lose my focus on the current tab
I want to open a new tab using javascript. But I should not lose my focus on the current tab. More on forum.freecodecamp.org
🌐 forum.freecodecamp.org
1
0
January 17, 2019
How to keep current tab on page while hav… - Apple Community
Can someone tell me how I can keep a current tab stay on the same page while clicking a link that. goes on to open the link in a new tab? Sorry if this doesn't make sense. ... If you want to open a link in a new tab while keeping the current tab open on the same page, you can use one of the following methods in most web browsers: ... - If you have a middle mouse button ... More on discussions.apple.com
🌐 discussions.apple.com
February 5, 2024
[Question] Make target="_blank" stay on current tab
In most all browsers except Firefox, this is no longer possible in order to make the obnoxious pop-under ads impossible - and in Firefox, you need to do a little trick which involves opening a pop up from the original window context and close it again. I have explicit reasons for my desires Then tag that shit NSFW, man ;-) More on reddit.com
🌐 r/webdev
13
0
August 6, 2015
🌐
Quora
quora.com › How-do-I-open-a-link-in-a-new-tab-but-stay-on-the-same-page-using-HTML-code
How to open a link in a new tab but stay on the same page using HTML code - Quora
Answer (1 of 11): Not possible with HTML alone. There is no standard way to do this like target="_blank" or anything. But there is a hacky way to do this with a little JavaScript - Page on stackoverflow.com PS: Since this is hacky and not standard, it is not guaranteed to work across all browsers.
🌐
JSFiddle
jsfiddle.net › Marcel › PdLzK
Open a new tab with javascript but stay on current tab - JSFiddle - Code Playground
Adding External Resources will no longer create a list of resources in the sidebar but will be injected as a LINK or SCRIPT tag inside of the HTML panel.
🌐
Apple Community
discussions.apple.com › thread › 255459501
How to keep current tab on page while hav… - Apple Community
February 5, 2024 - ... If you want to open a link in a new tab while keeping the current tab open on the same page, you can use one of the following methods in most web browsers: ... - If you have a middle mouse button or a mouse wheel, you can click the link with the middle button.
Find elsewhere
🌐
Bubble
forum.bubble.io › need help
Open link in a new background tab (where user remains on current tab) - Need help - Bubble Forum
October 18, 2023 - Hi everyone — I’m trying to set up a workflow where when a button is clicked, it’ll open a webpage in a background tab. The goal is to get the same functionality as “Right click → Open Link In New Tab” (where the user s…
🌐
Google Support
support.google.com › chrome › thread › 71475237 › chrome-is-opening-links-in-new-tab-when-i-want-to-stay-in-current-tab
Chrome is opening links in new tab when I want to stay in current tab - Google Chrome Community
Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
🌐
Webflow
discourse.webflow.com › design help › general
Open link in new tab but stay in same tab - General - Forum | Webflow
May 5, 2023 - Hi, Is there a way to have a link that opens up a new tab but keeps the browser in the current tab? Thanks Here is my site Read-Only: LINK (how to share your site Read-Only link)
🌐
Quora
quora.com › How-do-I-open-a-link-in-a-new-tab-but-stay-on-the-same-page-in-Google-Chrome
How to open a link in a new tab but stay on the same page in Google Chrome - Quora
Answer (1 of 7): You can simply open a new tab and stay on the same page by: 1. Right clicking the link that you want to open in a new tab 2. Then select, “Open link in new tab” Another way to do this is by holding down the Command or Control ...
🌐
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 - By default, most hyperlinks open in the same tab. However, to open a link in a new tab or window, you adjust the target attribute. target attribute: Controls how the browser handles the linked document or linked page.
🌐
Mozilla Support
support.mozilla.org › mk › questions › 813567
Open new tabs but stay in current tab | Firefox Support Forum
April 23, 2011 - JavaScript is disabled in your browser · Please enable JavaScript to proceed · A required part of this site couldn’t load. This may be due to a browser extension, network issues, or browser settings. Please check your connection, disable any ad blockers, or try using a different browser
🌐
Unigui
forums.unigui.com › users area › components and code samples
Open new tab but stay on current page? - Components and Code Samples - uniGUI Discussion Forums
August 5, 2022 - @Sherzod Good Morning! Please, when I click on a button, is it possible to open a new tab but stay on current page? Thanks!