AmitDiwan has Published 10744 Articles

HTML DOM Audio Object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:25:03

496 Views

The HTML DOM Audio Object represents the HTML element. The audio element newly introduced in HTML 5. Using the audio object we can manipulate the audio element to get information about audioTrack , change to autoplay, etc.PropertiesFollowing are the properties of HTML DOM Audio Object −PropertyDescriptionaudioTracksTo return audioTrackList object ... Read More

HTML DOM Bdo object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:20:37

146 Views

The HTML DOM Bdo object is associated with the element in HTML. The bdo stands for Bi-Directional Override. It is used for creating and accessing a bdo object. It has only one property “dir”. The text direction by default is left to right but can be overridden with the ... Read More

HTML DOM blockquote object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:19:06

186 Views

The HTML DOM blockquote basically represent the HTML element . The element does not add any quotation marks unlike the tag. We can create and access properties with the help of the blockquote object.SyntaxFollowing is the syntax for −Creating the blockquote object −var x = document.createElement("BLOCKQUOTE");ExampleLet us ... Read More

HTML DOM Body property

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:15:52

150 Views

The HTML DOM body property associated with HTML element is used to set or return property values of the element. It returns the element. It can be used to change content inside the element. This property can overwrite child elements content present inside the element.SyntaxFollowing ... Read More

HTML DOM Button value Property

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:12:07

252 Views

The HTML DOM Button value property is associated with value attribute of the element. It specifies the hidden value of the button. The value property sets or returns the value of the value attribute of a button. Browsers generally submit the value text when clicked on a button while ... Read More

HTML DOM Canvas Object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:09:55

347 Views

The HTML DOM Canvas object is associated with the element introduced in HTML5. The tag is used to draw graphics with the help of JavaScript. The canvas acts as a container for graphics. On canvas, we can draw lines, shapes etc.PropertiesFollowing are the properties for Canvas Object −PropertyDescriptionfillStyleTo ... Read More

HTML DOM cite object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 06:01:28

121 Views

The HTML DOM cite object is associated with the HTML element. The element is used to give reference to a cited creative work and title must be included. It can be painting, book, tv show, movies etc.SyntaxFollowing is the syntax for −Creating a cite object −var x = ... Read More

HTML DOM Code object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 05:53:21

152 Views

The HTML DOM Code object is associated with the HTML 5 tag. It is used for marking up a piece of code by surrounding it inside the element. The Code object basically represents element.SyntaxFollowing is the syntax for −Creating a code object −var a = document.createElement("CODE");ExampleLet us ... Read More

HTML DOM Column object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 05:51:55

131 Views

The HTML DOM Column object is associated with the HTML element. The Column object is used to get or set the properties of element. The tag is used only inside a element.PropertiesFollowing is the property for column object −PropertyDescriptionSpanTo set or return the span attribute value ... Read More

HTML DOM ColumnGroup object

AmitDiwan

AmitDiwan

Updated on 20-Feb-2021 05:48:37

123 Views

The HTML DOM ColumnGroup object is associated with the HTML element. The element is used to apply CSS styles to a specific number of columns or all columns. This gives us a greater control on the columns that are present in a table.PropertiesFollowing is the ColumnGroup property −PropertyDescriptionspanSets ... Read More

Advertisements