Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 486 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 486 Bytes

JQuery ProgressBar

JQuery ProgressBar

HTML

<div id="steps"></div>

JavaScript

jQuery(document).ready(function($) {
  $('#steps').progressbar({
    steps: ['Step 1', 'Step 2', '~Step 3 Failed', '@Step 4 ( Current )', 'Step 5', 'Step 6']
  });
});

Explanation

  • ~ means Failed
  • @ means Current

Thanks

https://www.youtube.com/watch?v=DYevj6UGNWA