I have a jquery progress bar with four steps, when the steps are checked (completed) the progress bar fills up to 100 percent like that, but when I set the checked property of the checkbox = true in code behind , the progress bar does not fill ....
code
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<link href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.min.css" rel="stylesheet" type="text/css" />
<script src="https://code.jquery.com/jquery-1.11.0.min.js"></script>
<script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script>
<script>
$(function () {
$("#progressbar").progressbar( ...
Go to the complete details ...