HTML DOM Node isSupported() Method Last Updated : 13 Jun, 2023 Comments Improve Suggest changes Like Article Like Report The isSupported() method in HTML DOM is used to check the specified feature is supported by the specified node or not. This method is not supported by many browsers. It returns true if the feature is supported else it returns false. Syntax: node.isSupported(feature, version) Note: This method has been DEPRECATED and is no longer recommended. Parameters Used : feature: It is a required parameter and used to defines the feature to check it is supported or not.version: It is an optional parameter which defines the version of the feature to check if is supported. Below program illustrates the Node isSupported() method in HTML DOM: Example: This example check if the feature Core, version 2.0, is supported for the <button> element or not. html <!DOCTYPE html> <html> <head> <title> HTML DOM Node isSupported() method </title> </head> <body> <h1>GeeksforGeeks</h1> <h2>Node isSupported() method</h2> <p> Check feature Core XML DOM Level 2 is supported for the button element or not </p> <button onclick = "myGeeks()"> Click Here! </button> <p id = "GFG"></p> <script> function myGeeks() { var item = document.getElementsByTagName("BUTTON")[0]; var x = item.isSupported("Core", "2.0"); document.getElementById("GFG").innerHTML = x; } </script> </body> </html> Output: Before Click on the button: After click on the button: Supported Browsers: The browser supported by Node isSupported() method are listed below: Internet Explorer 9.0Safari Comment More infoAdvertise with us S Shubrodeep Banerjee Follow Improve Article Tags : Web Technologies HTML HTML-DOM HTML-Methods Similar Reads HTML DOM Style textDecoration Property The HTML DOM Style textDecoration property is used to set one or more decorations for a text. We can specify one or more text decorations for a text separated by spaces. It returns the textDecoration property that is given to the text. SyntaxIt returns the textDecoration property. object.style.textD 2 min read HTML | DOM TouchEvent targetTouches Property The TouchEvent targetTouches property is a read-only property and used for returning an array of Touch objects. It returns one object for each finger that is touching the current target element. Syntax : event.targetTouches Below program illustrates the TouchEvent targetTouches property : Example: F 1 min read HTML | DOM UiEvent detail Property The UiEvent detail property is used for returning a number with details about an event. The UiEvent detail property returns number which indicates the current click count when used on onclick and ondblclick whereas when used on onmousedown and onmouseup, it returns a number which indicates the curre 1 min read HTML | DOM Style cssFloat Property The style cssFloat property in HTML DOM is used to set or returns the horizontal alignment of element. This property allows an element to float right or left side of the parent body with rest of the elements wrapped around it. Syntax: It returns the cssFloat property.object.style.cssFloatIt is used 2 min read HTML | DOM Script Object The DOM Script Object is used to represent the HTML <script> element. The script element is accessed by getElementById(). Properties: async: It is used to specify the script is executed asynchronously. charset: It is used to specify the character encoding used in an external script file. defer 2 min read HTML | DOM Style textShadow Property The style textShadow property in HTML DOM is used to set the shadow effects for text. We can set more than one shadow effects by using this property. This property can also return the shadow effects of a text. Syntax: It returns the textShadow property.object.style.textShadowIt used to set the textS 2 min read HTML DOM MouseEvent pageY Property The MouseEvent pageY property is a read-only property and used for returning the vertical coordinate of the mouse pointer when an event has triggered. Syntax :event.pageYReturn Value: It returns a number which represents the vertical coordinate of the mouse pointer in pixels. Below program illustrat 1 min read HTML | DOM Style animationDirection Property The animationDirection property is used to set or return the animation direction. This property will have no effect if the animation is set to place only once. Syntax: It returns the animationDirection Property.object.style.animationDirection;It is used to set the animationDirection Property.object. 3 min read HTML | DOM Storage key() Method The DOM Storage key() Method is related to the Storage object and is used to return the name of the key with the specified index. Storage object can be either a localStorage or sessionStorage Object. Syntax: Local storage:localStorage.key(index)Session storage:sessionStorage.key(index) Parameters: I 1 min read HTML | DOM Style opacity Property The Style opacity property in HTML DOM used to set opacity level for an element. Opacity level defines the transparency level where value 1 represents not transparent, 0.5 represents 50% transparency and 0 represents completely transparent.It also returns opacity level of an element. Syntax: It retu 2 min read Like