- 2
The target attribute
2 Réponses
+ 2
target = '_blank' opens link in new tab/window
target = '_self' opens link in current tab/window/frame
target = '_parent' opens link in parent frame
+ 2
... and target="customWindowName" will open link in a previously opened/named new window object through JS (window.open() method) ^^