-
-
Save wofockham/01a65e4754f5a5e81f2bca177477b33b 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; | |
$('#signup-progress').val(currentVal); // Actually update the input? | |
console.log(currentVal) | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment