SEO MotionZ Forum
What is rel=”noopener” tag? - Printable Version

+- SEO MotionZ Forum (https://seomotionz.com)
+-- Forum: Search Engine Optimization (https://seomotionz.com/forumdisplay.php?fid=7)
+--- Forum: Link Building (https://seomotionz.com/forumdisplay.php?fid=8)
+--- Thread: What is rel=”noopener” tag? (/showthread.php?tid=4933)



What is rel=”noopener” tag? - siva s - 02-04-2019

What is rel=”noopener” tag?


RE: What is rel=”noopener” tag? - Autofresh.in - 02-07-2019

rel=”noreferrer noopener” This tag when combined basically means that no referrer information should be passed to the website being linked (noreferrer) to and noopener prevents the newly opened page from having the ability to control the page that delivered the traffic.


RE: What is rel=”noopener” tag? - hema29 - 02-08-2019

Basically its a no information tag. saying 'No opener' is relative term here.


RE: What is rel=”noopener” tag? - websiteee - 02-19-2019

A rel=”noopener” is an HTML attribute that’s added to all WordPress links that are selected to open in a new browser tab. This feature was introduced in WordPress to address a security vulnerability which can be exploited by malicious websites.

or

rel="noopener" prevents the new page from being able to access the window.opener property and ensures it runs in a separate process.


RE: What is rel=”noopener” tag? - lata21 - 02-20-2019

Use it ans will know what it does.Tongue


RE: What is rel=”noopener” tag? - ademar - 02-21-2019

As intrusive as it may seem, it is actually a security solution to prevent malicious links from gaining control of an open tab. Usually, the window.opener Javascript object can be used to control a parent window (your current tab) by using a child window (the newly opened tab).

Hackers can use this feature to change the user's open website with a fake and steal information, such as login details. Here is an example of a website showing how window.opener can hijack your tab.

To avoid this, rel="noopener"is the tag that blocks the use of the window.opener Javascript object . If window.opener does not work, one tab can not control another tab.


RE: What is rel=”noopener” tag? - webxerossolutions - 02-25-2019

rel=”noopener” stops the new page from being able to access the window.opener property and make sure it runs in a separate process. rel=”noreferrer” tag do the same thing but also stops the Referer header from being forwarded to the new page.