Trying to do this, but is it wrong? Below is my style and script and html that I am trying to load.
<style>
#bar {
background:black;
width: </style><script>var barWidth = getElementByID("nav").style.width; document.write (nav);</script><style>
height: 5px;
}
</style>
<section id="nav">
<a href="#">Link1</a>
<a href="#">Link2</a>
<a href="#">Link3</a>
<span id="loginButton"><a href="#">Login</a></span>
<section id="bar"></section>
</section>
You cannot nest a
scripttag within astyletag. The following will accomplish your desired behavior…