UrlTarget Inherits: Enum TBD Properties BLANK – Opens the URL in a new browser tab or window. PARENT – Opens in the parent frame, useful with nested iframes. SELF – Opens in the same browsing context (i.e., same tab). TOP – Opens in the topmost frame, breaking out of any iframe. Properties# BLANK = 'blank' # Opens the URL in a new browser tab or window. PARENT = '_parent' # Opens in the parent frame, useful with nested iframes. SELF = '_self' # Opens in the same browsing context (i.e., same tab). TOP = '_top' # Opens in the topmost frame, breaking out of any iframe.