Site icon DW Faisalabad

HTML DOM Code Object

The Code object represents an HTML <code> element.

Access a Code Object

You can access a <code> element by using getElementById():

Example

var x = document.getElementById(“myCode”);

Try it Yourself »

Create a Code Object

You can create a <code> element by using the document.createElement() method:

Example

var x = document.createElement(“CODE”);

Try it Yourself »

Standard Properties and Events

The Abbreviation object supports the standard properties and events.


Related Pages

HTML tutorial: HTML Text Formatting Elements

HTML reference: HTML <code> tag

Exit mobile version