HTML | DOM Window defaultStatus Properties Last Updated : 26 Jul, 2019 Comments Improve Suggest changes Like Article Like Report The DefaultStatus property is used to set or return the default text in the status bar at the bottom side of the browser. Syntax: window.defaultStatus Return Type: The Default text in status bar. Example: html <!DOCTYPE html> <html> <head> <title> HTML | DOM Window defaultStatus Properties </title> </head> <body> <p>This is first paragraph.</p> <script> window.defaultStatus = "The default text of the status bar."; </script> </body> </html> NOTE : The output of this example can't be generated as this property is not supported by any browser. This property supports in Opera 12 and earlier version. This property supports in Firefox 23 and earlier version. Supported Browsers: The major browsers are not supported by DOM Window defaultStatus Properties Comment More infoAdvertise with us Next Article HTML | DOM Window defaultStatus Properties S shivangsharma15 Follow Improve Article Tags : Web Technologies HTML HTML-DOM HTML-Property Similar Reads HTML DOM Window frames Properties The HTML DOM Window frames property in HTML DOM is used to return the frame element in the form of an array object. This property represents all <iframe> elements in the current window. DOM Windowframe is a read-only property. Syntax:window.framesProperties:length property: It returns the numb 2 min read HTML DOM window document Property The HTML DOM window document returns a reference to the document contained in the current window. Syntax: doc = window.document; Return Value: This property returns a reference to the document. Example: In this example, we will get the title of the document using that document reference. html <ti 1 min read HTML | DOM Window closed Property The Window closed property in HTML DOM is used to return a value that indicates whether the referred window is closed or not. Syntax: window.close() Return Value: A Boolean value, true if window is closed otherwise false. Example: HTML <!DOCTYPE html> <html> <head> <title> HT 1 min read HTML | DOM Window opener Properties The Window opener property in HTML DOM is used to return the reference of newly created windows. This property is used to return the details of the source (parent) window. A window is opened using the window.open() method and closed using the window.opener.close() method. Syntax:window.openerReturn 2 min read HTML | DOM Window frameElement Properties HTML DOM Window frameElement property returns the iframe element in which the window is embedded or stored. If it is not stored, in that case, it simply returns a null value. Syntax: window.frameElement Return Value: It returns an IFrame object or null. Example: html <!DOCTYPE html> <html 1 min read Like