0
well suppose I have a Progress bar in html and I have a script that as I click on a certain object the value of the Progress increases by +1 , as I would for when this value reaches 10 the maximum value of the bar increases to 100 ?
<progress id="pg" value="0" max="10" ></progress>
$('#store').click(function () {
click++;
document.getElementById('pg').value = click;
});
Thank you very much my friend, helped me very, grateful !
– Gabriel Longatti