How to simulate target=“_blank” in JavaScript ? Last Updated : 12 Jul, 2025 Comments Improve Suggest changes 1 Likes Like Report In web development, the target="_blank" attribute on anchor (<a>) tags is used to open links in a new browser tab or window. Sometimes, developers might need to achieve this behavior programmatically using JavaScript. Understanding these techniques equips developers with flexible solutions for enhancing user experience and managing navigation behavior seamlessly in web applications.HTML Target AttributesThe HTML target attribute defines where the linked document will open when the user clicks on the link.If target="_blank" is set on an anchor element, the linked document will open in a new tab; otherwise, the document will open in the same tab.Syntax document.addEventListener("click", function(e) { if (e.target.tagName == "A" && !e.target.hasAttribute("target")) { e.target.setAttribute("target", "_blank"); }}); Example: To demonstrate simulating target with the _blank value using JavaScript. At first, we will create an event on every click function then we set the condition if there is an anchor tag and the target attribute is not mentioned, the target attribute is "_blank". html <!DOCTYPE html> <html> <head> <title> Simulate target=“_blank” in JavaScript </title> <script> document.addEventListener("click", function (e) { if (e.target.tagName == "A" && !e.target.hasAttribute("target")) { e.target.setAttribute("target", "_blank"); } }); </script> </head> <body style="text-align:center"> <a href="https://www.geeksforgeeks.org/"> GeeksforGeeks<br> A computer science portal for geeks </a> </body> </html> Output: Create Quiz Comment A ankitabag123 Follow 1 Improve A ankitabag123 Follow 1 Improve Article Tags : Technical Scripter JavaScript Web Technologies Technical Scripter 2019 JavaScript-Misc JavaScript-Questions +2 More Explore JavaScript BasicsIntroduction to JavaScript4 min readVariables and Datatypes in JavaScript6 min readJavaScript Operators5 min readControl Statements in JavaScript4 min readArray & StringJavaScript Arrays7 min readJavaScript Array Methods7 min readJavaScript Strings5 min readJavaScript String Methods9 min readFunction & ObjectFunctions in JavaScript5 min readJavaScript Function Expression3 min readFunction Overloading in JavaScript4 min readObjects in JavaScript4 min readJavaScript Object Constructors4 min readOOPObject Oriented Programming in JavaScript3 min readClasses and Objects in JavaScript4 min readWhat Are Access Modifiers In JavaScript ?5 min readJavaScript Constructor Method7 min readAsynchronous JavaScriptAsynchronous JavaScript2 min readJavaScript Callbacks4 min readJavaScript Promise4 min readEvent Loop in JavaScript4 min readAsync and Await in JavaScript2 min readException HandlingJavascript Error and Exceptional Handling6 min readJavaScript Errors Throw and Try to Catch2 min readHow to create custom errors in JavaScript ?2 min readJavaScript TypeError - Invalid Array.prototype.sort argument1 min readDOMHTML DOM (Document Object Model)8 min readHow to select DOM Elements in JavaScript ?3 min readJavaScript Custom Events4 min readJavaScript addEventListener() with Examples9 min readAdvanced TopicsClosure in JavaScript4 min readJavaScript Hoisting6 min readScope of Variables in JavaScript3 min readJavaScript Higher Order Functions7 min readDebugging in JavaScript4 min read Like