How to change a background color of jQueryUI Progressbar?
Im trying to use:
$('#progressbar div').css({backgroundColor: '#9CFF29'});
but no success :(
Anybody can help me? Thanks!
How to change a background color of jQueryUI Progressbar?
Im trying to use:
$('#progressbar div').css({backgroundColor: '#9CFF29'});
but no success :(
Anybody can help me? Thanks!
Make sure you are selecting the div. Are you able to change other properties of #progressbar such as width?
The selector should be on the main <div>
so just use #progressbar
and to override the styling, use just background
(since it also has an image defined as well), like this:
$('#progressbar').css({background: '#9CFF29'});
jQuery UI Progressbar plugin uses the jQuery UI CSS Framework to style its look and feel, including colors and background textures. We recommend using the ThemeRoller tool to create and download custom themes that are easy to build and maintain.