We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to change the progress bar color after a user click, but even if I create a new instance of ldBar, I have no success:
$(document).ready(function () { let p2 = new ldBar('#p2', { 'preset': 'circle', 'stroke': 'red' }); p2.set(50, false); $('.btn-test').on('click', function () { let n = Math.floor(Math.random() * 100); p2 = new ldBar('#p2', { 'stroke': 'green' }); p2.set(n, false); }); });
Is there a way to change configuration after the instance has been created?
Thank you for this great library!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to change the progress bar color after a user click, but even if I create a new instance of ldBar, I have no success:
Is there a way to change configuration after the instance has been created?
Thank you for this great library!
The text was updated successfully, but these errors were encountered: