views:

1113

answers:

1

Is it possible to add status text in jQuery progress bar?

For example :

if i am selecting 3 files to upload i want to show the filename below the status bar is it possible?

+1  A: 

if the one you aretalking about is this one http://t.wits.sg/misc/jQueryProgressBar/demo.php then it is simple.

$("span.progressBar >span").prepend("<br/>");

you can test this directly on the page under the link above, using firebug ;-)

you may add to get a centralized alignment.

Tzury Bar Yochay