Baseline Widely available
The HTMLMetaElement.name
property is used in combination with HTMLMetaElement.content
to define the name-value pairs for the metadata of a document. The name
attribute defines the metadata name and the content
attribute defines the value.
A string.
Examples Reading the metadata name of a meta elementThe following example queries the first <meta>
element in a document. The name
value is logged to the console, showing that keywords have been specified for the document:
// given <meta name="keywords" content="documentation, HTML, web technologies">
const meta = document.querySelector("meta");
console.log(meta.name);
// "keywords"
The following example creates a new <meta>
element with a name
attribute set to author
. The content
attribute sets the author of the document and the element is appended to the document <head>
:
let meta = document.createElement("meta");
meta.name = "author";
meta.content = "Franz Kafka";
document.head.appendChild(meta);
Specifications Browser compatibility See also
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4