HTML DOM Title Object






<!--
main_leaderboard, all: [728,90][970,90][320,50][468,60]
-->



HTML DOM Title Object



❮ Previous
Next ❯



Title Object


The Title object represents an HTML <title> element.


Access a Title Object


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



Example



var x = document.getElementsByTagName("TITLE")[0];

Try it Yourself »

Create a Title Object


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



Example



var x = document.createElement("TITLE");

Try it Yourself »

Title Object Properties











Property Description
text Sets or returns the text of the document's title

Standard Properties and Events


The Title object also supports the standard properties and events.




Related Pages


HTML tutorial: HTML Head


HTML reference: HTML <title> tag





❮ Previous
Next ❯

Popular posts from this blog

Greedy Best First Search implementation in Rust

Function to Return a JSON Like Objects Using VBA Collections and Arrays

C++11 CLH Lock Implementation