Answer the question
In order to leave comments, you need to log in
how to change progress in jquery
There is a code:
<progress value="" max="100">
$(document).ready(function() {
$('button').click(function() {
$('progress').val(20);
});
});
Answer the question
In order to leave comments, you need to log in
$('progress').val($('progress').val() + 20);
here to make it smooth
https://jsfiddle.net/r445dny7/3/
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question