views:

479

answers:

1

I am trying to show the progress of file upload thru jQuery. File upload works fine. But progress bar appears after the file is uploaded. That is pregress bar shown in 100%. But when i 'alert' i can see the progress bar.

any idea why progress bar is not shown with below sample ?

<body>
    <div id="progressbar"></div>
    <div id="status"></div>
</body>
    <script>
              $("#progressbar").progressbar({ value: 0 });
               updateStatus();
        </script>
</html>
A: 

are you using ie8?is it working on other browser?

Nope i am using Chrome/Firefox.
Niger