Having an issue incorporating a jQuery progress bar into a ul li tag.
<ul>
<li>
<a href="test">test</a>
<div id="progressbar"></div>
</li>
</ul>
I have set display: block for the anchor tag and attempted to do the same for the div tag, however, it is not working as expected. The div element appears below the anchor tag, but I want the progress bar to be on the same line.
Laurent