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.
🌐
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.
🌐
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.
🌐
Apple Community
discussions.apple.com › thread › 255459501
How to keep current tab on page while hav… - Apple Community
... 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
🌐
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
🌐
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…
🌐
Whsc
whsc.com.tw › wp-admin_bak › w0vv4 › article.php
javascript open new tab but stay on current page
Personalize your New Tab page in Chrome - Computer - Google Staging Ground Beta 1 Recap, and Reviewers needed for Beta 2, onlick should open a new tab but the focus should be on current tab and not on the new tab and should work on chrome and mozzila, open new window or tab but keep focus in the current, Open a new tab with javascript but stay on current tab using javascript. I open firefox to my homepage. <html> <body> <script> myWindow=window.open ('https://eyehunts.com/','','width=400,height=250') //myWindow.document.write ("<p>This is 'myWindow'</p>") myWindow.focus () </script> </body> </html> How do I open a link in a new tab but stay on the same page - Quora Reference: Open a URL in a new tab using JavaScript, Nothing an author can do can choose to open in a new tab instead of a new window; it is a user preference.
🌐
Webflow
discourse.webflow.com › design help › general
Open link in new tab but stay in same tab - General - Forum | Webflow
March 1, 2022 - 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 ...
🌐
Unigui
forums.unigui.com › users area › components and code samples
Open new tab but stay on current page? - Components and Code Samples ...
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!
🌐
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.