Ky -
Ky -

Reputation: 32173

Can an HTML anchor link explicitly require that a secure tab be opened?

Most browsers have secure tabs (Opera hasPrivate Tabs, Chrome has Incognito Mode, IE has In-Private Browsing, etc.). Anchor tags have the ability to force a link to open in a new tab (target="_blank"). Is there a pure HTML, cross-browser way to force a link to open in a secure tab?

I don't want discussion about its practicality, security, etc., just whether it's possible.

Upvotes: 1

Views: 504

Answers (2)

VictorC
VictorC

Reputation: 326

is not possible with pure html, perhaps with a chrome extension

Upvotes: 1

Quentin
Quentin

Reputation: 944564

No. The decision to not keep a history and discard cookies must be made by the user.

Upvotes: 2

Related Questions