I've got a horizontal bar that represents a percentage of completion  
of a certain task.
I can use jquery to set the width as follows:
$('#bar').width("<?=$progress_percent?>%"); (yes, that's php)

I can also do the following:
$('#bar').width('<?=$progress_percent?>%').show();

What I can't do is animate it with any success. All of the following  
don't work:
$('#bar').width('<?=$progress_percent?>%').show('slow');
$('#bar').show('slow');
$('#bar').animate({ width: 'show'}, 500);

and even using the Interface FX plugin creates a very choppy result:
$('#bar').BlindRight(2000);

Prior to the 1.01 release, we were able to use the animate() code  
above with a percentage width and it worked. With the 1.01 release  
that's been broken. Has anyone come across something that would work  
in this instance?

Thanks.

_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/

Reply via email to