An id on a <figure> tag assigns an identifier to the figure.
The identifier must be unique across the page.
An id attribute on a <figure> .
<figure id="poppies">
<img src="/img/html/poppies.jpg">
</figure>
The id attribute assigns an identifier to the <figure> element.
The id allows JavaScript to easily access the <figure> element.
It is also used to point to a specific id selector in a style sheet.
Tip: id is a global attribute that can be applied to any HTML element.
<figure id="identifier" />
Value | Description |
---|---|
identifier | A unique alphanumeric string. The id value must begin with a letter ([aside-Zaside-z]) and may be followed by any number of letters, digits ([0-9]), hyphens (-), underscores (_), colons (:), and periods (.). |
A <figure> element with a unique id.
Clicking the button will display the content of the element.
<figure id="myfigure">
<img src="/img/html/sangiorgio.jpg">
</figure>
<br/>
<button onclick="show();">Show figure content</button>
<script>
let show = () => {
let figure = document.getElementById("myfigure");
alert("Content: " + figure.innerHTML);
}
</script>
The id attribute assigns a unique identifier to the <figure>.
Clicking the button calls JavaScript which locates the <figure> using the id.
Finally, the content of the <figure> element is displayed in an alert box.
Here is when id support started for each browser:
![]() Chrome
|
6.0 | Sep 2010 |
![]() Firefox
|
4.0 | Mar 2011 |
![]() IE/Edge
|
9.0 | Mar 2011 |
![]() Opera
|
11.1 | Mar 2011 |
![]() Safari
|
5.0 | Jun 2010 |
Back to <figure>