THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML DOM Samp Object


Samp Object

The Samp object represents an HTML <samp> element.

Access a Samp Object

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

var x = document.getElementById("mySamp"); Try it

Create a Samp Object

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

var x = document.createElement("SAMP"); Try it

Standard Properties and Events

The Samp object supports the standard properties and events.


Related Pages

HTML tutorial: HTML Text Formatting Elements

HTML reference: HTML <samp> tag