HTML DOM Meta Object






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



HTML DOM Meta Object



❮ Previous
Next ❯



Meta Object


The Meta object represents an HTML <meta> element.


Access a Meta Object


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




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

Try it Yourself »

Create a Meta Object


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



Example



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

Try it Yourself »

Meta Object Properties























Property Description
content Sets or returns the value of the content attribute of a meta element
httpEquiv Sets or returns an HTTP header for the information in the content attribute
name Sets or returns a name for the information in the content attribute
scheme
Not supported in HTML5.
Sets or returns how the value of the content attribute should be interpreted

Standard Properties and Events


The Meta object also supports the standard properties and events.




Related Pages


HTML reference: HTML <meta> tag





❮ Previous
Next ❯

Popular posts from this blog

Python Lists

Aion

JavaScript Array Iteration Methods