Search completed in 1.60 seconds.
12 results for "itemScope":
itemscope - HTML: Hypertext Markup Language
WebHTMLGlobal attributesitemscope
itemscope is a boolean global attribute that defines the scope of associated metadata.
... specifying the itemscope attribute for an element creates a new item, which results in a number of name-value pairs that are associated with the element.
... every html element may have an itemscope attribute specified.
...And 13 more matches
itemprop - HTML: Hypertext Markup Language
WebHTMLGlobal attributesitemprop
html <div itemscope itemtype="http://schema.org/movie"> <h1 itemprop="name">avatar</h1> <span>director: <span itemprop="director">james cameron</span> (born august 16, 1954)</span> <span itemprop="genre">science fiction</span> <a href="../movies/avatar-theatrical-trailer.html" itemprop="trailer">trailer</a> </div> structured data item itemprop name itemprop value ...
... three properties with values that are strings <div itemscope> <p>my name is <span itemprop="name">neil</span>.</p> <p>my band is called <span itemprop="band">four parts water</span>.</p> <p>i am <span itemprop="nationality">british</span>.</p> </div> one property, "image", whose value is a url <div itemscope> <img itemprop="image" src="google-logo.png" alt="google"> </div> when a string value can't be easily read and understood by a pers...
... <h1 itemscope> <data itemprop="product-id" value="9678aou879">the instigator 2000</data> </h1> for numeric data, the meter element and its value attribute can be used.
...And 12 more matches
itemtype - HTML: Hypertext Markup Language
WebHTMLGlobal attributesitemtype
itemscope is used to set the scope of where in the data structure the vocabulary set by itemtype will be active.
... the itemtype attribute can only be specified on elements which have an itemscope attribute specified.
... the itemid attribute can only be specified on elements which have both an itemscope attribute and an itemtype attribute specified.
...And 6 more matches
Microdata - HTML: Hypertext Markup Language
WebHTMLMicrodata
to create an item, the itemscope attribute is used.
... itemref – properties that are not descendants of an element with the itemscope attribute can be associated with the item using an itemref.
... itemscopeitemscope (usually) works along with itemtype to specify that the html contained in a block is about a particular item.
...And 4 more matches
Microdata DOM API - Web APIs
WebAPIMicrodata DOM API
each item is represented in the dom by the element on which the relevant itemscope attribute is found.
... these elements have their element.itemscope idl attribute set to true.
... the type(s) of items can be obtained using the element.itemtype idl attribute on the element with the itemscope attribute.
...And 2 more matches
Global attributes - HTML: Hypertext Markup Language
WebHTMLGlobal attributes
itemref properties that are not descendants of an element with the itemscope attribute can be associated with the item using an itemref.
... itemscope itemscope (usually) works along with itemtype to specify that the html contained in a block is about a particular item.
... itemscope creates the item and defines the scope of the itemtype associated with it.
...And 2 more matches
HTML attribute reference - HTML: Hypertext Markup Language
WebHTMLAttributes
the following examples are valid ways to mark up a boolean attribute: <div itemscope> this is valid html but invalid xml.
... </div> <div itemscope=itemscope> this is also valid html but invalid xml.
... </div> <div itemscope=""> this is valid html and also valid xml.
... </div> <div itemscope="itemscope"> this is also valid html and xml, but perhaps a bit verbose.
itemid - HTML: Hypertext Markup Language
WebHTMLGlobal attributesitemid
an itemid attribute can only be specified for an element that has both itemscope and itemtype attributes.
... also, itemid can only be specified on elements that possess an itemscope attribute whose corresponding itemtype refers to or defines a vocabulary that supports global identifiers.
... example html <dl itemscope itemtype="http://vocab.example.net/book" itemid="urn:isbn:0-330-34032-8"> <dt>title <dd itemprop="title">the reality dysfunction <dt>author <dd itemprop="author">peter f.
... hamilton <dt>publication date <dd><time itemprop="pubdate" datetime="1996-01-26">26 january 1996</time> </dl> structured data itemscope itemtype: itemid http://vocab.example.net/book: urn:isbn:0-330-34032-8 itemprop title the reality dysfunction itemprop author peter f.
Index - Web APIs
WebAPIIndex
each item is represented in the dom by the element on which the relevant itemscope attribute is found.
... these elements have their element.itemscope idl attribute set to true.
... the type(s) of items can be obtained using the element.itemtype idl attribute on the element with the itemscope attribute.
itemref - HTML: Hypertext Markup Language
WebHTMLGlobal attributesitemref
properties that are not descendants of an element with the itemscope attribute can be associated with an item using the global attribute itemref.
... itemref provides a list of element ids (not itemids) elsewhere in the document, with additional properties the itemref attribute can only be specified on elements that have an itemscope attribute specified.
... example html <div itemscope id="amanda" itemref="a b"></div> <p id="a">name: <span itemprop="name">amanda</span> </p> <div id="b" itemprop="band" itemscope itemref="c"></div> <div id="c"> <p>band: <span itemprop="name">jazz band</span> </p> <p>size: <span itemprop="size">12</span> players</p> </div> structured data (in json-ld format) { "@id": "amanda", "name": "amanda", "band": { "@id": "b", "name": "ja...
HTML documentation index - HTML: Hypertext Markup Language
WebHTMLIndex
23 itemref attribute, global attribute, html, html microdata, microdata, reference properties that are not descendants of an element with the itemscope attribute can be associated with an item using the global attribute itemref.
... 24 itemscope attribute, global attribute, html, html microdata, microdata, reference itemscope is a boolean global attribute that defines the scope of associated metadata.
... specifying the itemscope attribute for an element creates a new item, which results in a number of name-value pairs that are associated with the element.
HTMLElement - Web APIs
WebAPIHTMLElement
htmlelement.itemscope is a boolean representing the item scope.
... living standard added the following properties: translate, itemscope, itemtype, itemid, itemref, itemprop, properties, and itemvalue.