THE WORLD'S LARGEST WEB DEVELOPER SITE
HTMLCSSJAVASCRIPTSQLPHPBOOTSTRAPJQUERYANGULARXML
 

HTML DOM Time Object


Time Object

The Time Object is new in HTML5.

The Time object represents an HTML <time> element.

Access a Time Object

You can access a <time> element by using getElementsByTagName():

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

Create a Time Object

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

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

Time Object Properties

Property Description
dateTime Sets or returns the value of the datetime attribute in a <time> element

Standard Properties and Events

The Time object also supports the standard properties and events.


Related Pages

HTML reference: HTML <time> tag