A hidden attribute on a <footer> tag hides the footer.
Although the footer is not visible, its position on the page is maintained.
A hidden attribute on a <footer>.
The footer is not visible.
A hidden footer:
<p>A hidden footer:</p>
<footer hidden>
<p>© Company, Ltd. All Rights Reserved.</p>
</footer>
The hidden attribute makes the <footer> invisible.
You can specify either 'hidden' (without value) or 'hidden="hidden"'. Both are valid.
A hidden <footer> is not visible, but maintains its position on the page.
<footer hidden>
<footer hidden="hidden">
Value | Description |
---|---|
hidden | Use value 'hidden' or no value at all. |
Clicking the button toggles A hidden attribute on the <footer> element.
<footer id="myfooter" style="background:indigo;color:white;padding:15px;">
© Company, Ltd. All Rights Reserved.
</footer>
<br />
<button onclick="toggle(this)">Hide footer</button>
<script>
let toggle = button => {
let element = document.getElementById("myfooter");
let hidden = element.getAttribute("hidden");
if (hidden) {
element.removeAttribute("hidden");
button.innerText = "Hide footer";
} else {
element.setAttribute("hidden", "hidden");
button.innerText = "Show footer";
}
}
</script>
The hidden attribute hides the <footer> element.
When clicking the button, a JavaScript function toggles the hidden attribute.
Here is when hidden 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 |