THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML DOM Span Object


Span Object

The Span object represents an HTML <span> element.

Access a Span Object

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

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

Create a Span Object

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

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

Standard Properties and Events

The Span object supports the standard properties and events.


Related Pages

HTML tutorial: HTML Blocks

HTML reference: HTML <span> tag