Please format your code. See https://help.github.com/articles/github-flavored-markdown
Jul 1, 2018
2
Level 1
How can i hide progress bar ?
hi i have the progress bar and i want to hide it. please take a look of my code and tell me how can i hide it.
Style CSS code
#myProgress { width: 100%; background-color: #ddd; }
#myBar { width: 10%; height: 30px; background-color: #4CAF50; text-align: center; line-height: 30px; color: white; }
HTML Code
10% Click MeJavaScript Code
function move() { var elem = document.getElementById("myBar"); var width = 10; var id = setInterval(frame, 10); function frame() { if (width >= 100) { clearInterval(id); } else { width++; elem.style.width = width + '%'; elem.innerHTML = width * 1 + '%'; } } }
Please or to participate in this conversation.