Hello,
I am trying to add a jquery progress bar inside a ul li tag.
<ul>
<li>
<a href="test">test</a>
<div id="progressbar"></div>
</li>
</ul>
I use display: block for the anchor tag and I tried the same for the div tag but with no luck. The div elements displays below the anchor tag. I would like the progress bar to be on the same line as the anchor tag.
Laurent