Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
1k views

How to make progress-bar reverse animation left to right? $(document).ready(function() { toastr.options = { 'closeButton': true, 'debug': false, '...
Divya Kunjir's user avatar
0 votes
0 answers
176 views

we use a multi-step form with a progressbar. For some reason, the progressbar doesn't add the class="active" to the 2nd step after the first button click, but jumps right to step 5. Can you see my ...
Veit's user avatar
  • 49
0 votes
1 answer
724 views

I am using https://github.com/yxfanxiao/jQuery-plugin-progressbar to draw animated pie charts, using the exact codes below: JS: ; (function ($) { $.fn.loading = function () { var ...
Eray Balkanli's user avatar
2 votes
1 answer
100 views

I got a circle bar like this example : JsFiddle and I would like to add a limit bar like this : Circle Bar But I want a limit bar alterable with a value like with : "bar.animate(value);" for the blue ...
Pinache's user avatar
  • 23
1 vote
1 answer
4k views

I came across my posts which answer this question.But i am not able get an idea of how i can implement in my program.My requirement is as follows. from a jsp page i call a servlet using ajax call: $(...
vignesh's user avatar
  • 588
0 votes
1 answer
45 views

$.get('jobs', { }, function (responseText) { rt = JSON.parse(responseText); console.log(rt); for (i = 0; i < rt.length; i++) { $("#jobs").append("<...
Yajat Singh's user avatar
0 votes
0 answers
237 views

Currently: Click "Start Download" button "File Download" box displays Download starts Progress indicator begins and runs to 100% Box indicates "Complete" I have been unsuccessful at modifying the code ...
woodlawn_la's user avatar
2 votes
1 answer
2k views

I have a JSON array with around 2000 records and I need to build a table to display the data from these records.As it has large amount of data the processing may cause the browser to freeze.So I was ...
Intruder's user avatar
  • 145
0 votes
1 answer
2k views

I have a progressbar which is being animated in a mouseover event in the following way: $("#progressbar .ui-progressbar-value").animate({width: 200}, {duration: 3000},'slow') Then in a mouseout event ...
Konstantin's user avatar
0 votes
1 answer
631 views

I'm trying to set up a JQuery Progress Bar to update when the user submits a form (the final code will be more complex and dynamic, but I'm just trying to learn how the progress bar works first). The ...
Bob H's user avatar
  • 51
1 vote
2 answers
2k views

I was trying to make jquery-ui progress bar which shows progress with filling inputs in form. My code is as following: html: <div id="progress" class="progress"></div> //form and ...
Krupal Shah's user avatar
  • 9,207
0 votes
1 answer
4k views

I need some help with an ajax request and the use of data in a jQuery progressbar. Here is the index.html <div id="progressbar"></div> Here is the test.json { "progressbar":12 } Here is ...
Jason's user avatar
  • 11
0 votes
1 answer
368 views

I'm trying to style the default progressbar skin of jquery-ui. Unfortunately I've discovered an issue that is known as "background bleeding". Apparently the solution for this problem is to use: -moz-...
Sora's user avatar
  • 73
1 vote
0 answers
184 views

I'm having a problem with implementing the progress bar using the jquery UI progressbar widget. The actual bar in the widget is not loading in real time. It just jumps to the end bar when the timer is ...
user3369965's user avatar
3 votes
0 answers
2k views

This is not so much a question rather than information I wish to share in the hopes that it may help others with jQuery progress bars. I was recently asked to create a progress bar that would ...
Bob Tate's user avatar
  • 1,381
0 votes
1 answer
1k views

I am using jQuery 1.7.2 and jQuery-ui is 1.10.4. My code works perfectly in FireFox. My code for jQuery as below. $(document).ready(function () { $("#progressbar").show(); $("#progressbar")....
Milind's user avatar
  • 1,953
2 votes
2 answers
607 views

I have an issue with jQuery UI Progress bars. I got multiple progress bars on my page (for stacked progress bars indicating a multi-step progress) and I have the following code to initiate the ...
Ali Tabibzadeh's user avatar
0 votes
1 answer
954 views

I have a PHP script that takes a long time to execute because every operation has to do SOAP call to another website. I would like to add a progressbar indicator so that I can see the % complete of ...
Eugene van der Merwe's user avatar
3 votes
1 answer
4k views

my progress bar is working perfect when i write value into my html but it it dont work when i pass value from jquery .. e.g $('#progresslevel').html(data); right now i have this html in which if i ...
hellosheikh's user avatar
  • 3,005
1 vote
0 answers
650 views

I'm trying to implement JQueryUI progressbars through an AngularJS directive, but I'm encountering a slight annoyance, and I feel as though I'm probably just failing in my understanding of the ...
thewatcheruatu's user avatar
0 votes
1 answer
947 views

I have a Gridview with a column that contains progressbar value. I managed to display the progress for each row but I'm looking for a way to alter the color of progress bar based on another column ...
Poorya's user avatar
  • 1,340
0 votes
1 answer
136 views

I want to use a jQueryUI progress bar when I'm reading a very large json file. Is the number of "records" in the file known when calling getJSON(), so that I can advance the progress bar accordingly?
B. Clay Shannon-B. Crow Raven's user avatar
0 votes
1 answer
681 views

I have this code for a progress bar but the .progress-labelis showing too many decimals, something like (2.020302032400%). My code looks like this <script> $(document).ready(function() { ...
Jaypee's user avatar
  • 1,290
1 vote
3 answers
5k views

I'm having trouble making a jQuery UI indeterminate progressbar work properly in a Rails application. I'm basing my work off the jQuery-UI API demos at http://jqueryui.com/progressbar/#indeterminate ...
ajh's user avatar
  • 21
0 votes
4 answers
2k views

I have a problem. Can someone help to fix this code so that the progressbar starts over again when it reaches 100. I want that you can see that the work is under progress. With my code now it ...
user2210516's user avatar
0 votes
1 answer
1k views

I need to create an animated progress bar on page load, here is an example as to what I require: http://somnia-themes.com/templates/verendus/shortcodes/progressbar.html I need the same amount of bars ...
user2202463's user avatar
9 votes
1 answer
276 views

I've got a full bore copy of jQuery UI in the app, so it doesn't matter if I'm loading from the CDN or locally, all I know is it's loaded. (because if we load from the CDN our only option is to ...
jcolebrand's user avatar
2 votes
2 answers
657 views

I'm trying to use just a single color in jQuery progressbar, but it fill the whole div. Here's the problem, i just use these functions. $(document).ready(function(){ $("#progressbar").css({ "...
user avatar
0 votes
1 answer
631 views

This may be a pretty simple question about jQuery UI and Javascript, but I am still feeling my way through these syntax's. I am trying to update a jQuery progress bar whenever my C# (ASP.NET) program ...
se_brandon's user avatar
4 votes
4 answers
3k views

The default direction of the jQuery UI Progressbar is from left to right. How do I change it so that it moves from right to left on completion? Below is an example of what I am trying to achieve.
Julian's user avatar
  • 1,831
1 vote
0 answers
607 views

I want to make a content slider with jQuery UI Tabs (with "rotate" opion enabled and some fx to fade-in / fade-out tab content). Plus, I want to integrate jQuery UI Progressbar into tabs, so that it ...
Adrian's user avatar
  • 337
-1 votes
1 answer
371 views

I'm trying to use jQuery UI Progress Bar to show the complete status of the execution of a function, but before I could even use the Progress Bar, I need to find out how many percent of my function ...
user765368's user avatar
  • 20.4k
0 votes
1 answer
873 views

I'm trying to display a progress bar while the images on my page load (there are 95). I can get the progress bar to display but only in $(document).ready() { ... } Is this right? And what is the ...
Danny Bullis's user avatar
  • 3,215
2 votes
2 answers
247 views

I need to link an undefined number of input type="hidden" to some progress bar of JQuery UI (http://jqueryui.com/demos/progressbar/). I never have the same number of hidden and progress bar for each ...
Charles Lemarier's user avatar
1 vote
1 answer
506 views

I'm trying to show a progress bar in adobe air app, but having problems. I'm using jquery ui progress bar, but the progress bar isn't being shown and I don't know why. I'm trying the simple example ...
dchhetri's user avatar
  • 7,176
6 votes
3 answers
8k views

I have a progress bar in a html table cell. It seems to expand to the width of the table cell but i want to explicitly specify the height of the progress bar. Is it possible to specify the height of ...
leora's user avatar
  • 198k
3 votes
1 answer
2k views

today I was implementing jQuery Progress-bars on a web-page. I needed to implement about 30 progress bars on the same page. Its code goes like this $( "#progressbar" ).progressbar({ value: 80 }); ...
foxybagga's user avatar
  • 4,212
10 votes
3 answers
7k views

I have added a label to the jquery ui progressbar using this demo. What I want to do is change the text color depending on if the progress bar is behind the letter. How can I tell if that has ...
Hailwood's user avatar
  • 93.2k
2 votes
1 answer
8k views

I am using Microsoft MVC I have written a view that uploads files to the Amazon S3 API. I would like a progress bar in my view to show the progress of the processing of that action in my controller ...
StantonR's user avatar
0 votes
1 answer
4k views

I am trying to use jQuery UI progress bar in my web app. But that is not getting displayed. I am using a DWR call to get the upload status. Before using Jquery UI progressbar, i just displayed the ...
user avatar
0 votes
2 answers
2k views

I have a simple page that consists of a table with three jQuery UI progressbars and an ajax call. The ajax calls out to an empty php file and on success I destroy and recreate my progressbars. ...
user avatar