Creating Progress Bar from an html table value

need help on this.I'm trying to create a simple progress bar based on a value from another TD element.Here's my code below. I want the width property value of \[code\]<hr>\[/code\] equal to the value set on the first \[code\]<TD>\[/code\] element.\[code\]<table> <tr> <TD id="item">70%</td> <td width=200 style="border: 2px solid silver;padding:none"> <hr style="color:#c00;background-color:#c00;height:15px; border:none; margin:0;" align="left" width=50%; /> </td> </tr></table>\[/code\]Thanks
 
Back
Top