Hello!
I installed the animated Progress Bar from the jQuery UI website onto my website using such simple code:
<script type="text/javascript"> $(function() { $("#progressbar").progressbar({ value: 35 }); }); </script> <div id="progressbar"> </div>
How can I change the color of the progress bar itself? Plus, there was also an idea to do so - from 0% to 20% - the color is red, from 20% to 70% yellow, from 70% to 100% to use green. Thanks in advance for any help ..