In the last exercise of Chapter 15, "TABS", the problem is laid out as:
<tab-panel>
<div...
<div...
</tab-panel>
<script>
.
.
asTabs(document.querySelector("tab-panel"));
</script>
But the solution in the sandbox is laid out as:
<div id="wrapper">
<div...
<div...
</div>
<script>
.
.
asTabs(document.querySelector("#wrapper"));
</script>`
Recommend remaining consistent with "<div id="wrapper">", which is the same as it was in the 2nd Edition.
In the last exercise of Chapter 15, "TABS", the problem is laid out as:
But the solution in the sandbox is laid out as:
Recommend remaining consistent with "<div id="wrapper">", which is the same as it was in the 2nd Edition.