-
-
Save tobyturnbullknokal/69ca5aded6ca4c3a0b4f55d7583b66aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Increase/decrease progress bar on button click | |
$(document).ready(function() { | |
$('.appbutton').on('click', function(){ | |
var currentVal = $('#signup-progress').val(); | |
currentVal += 10; | |
console.log(currentVal) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment