Skip to content

Instantly share code, notes, and snippets.

@tobyturnbullknokal
Created July 12, 2016 00:58
Show Gist options
  • Save tobyturnbullknokal/69ca5aded6ca4c3a0b4f55d7583b66aa to your computer and use it in GitHub Desktop.
Save tobyturnbullknokal/69ca5aded6ca4c3a0b4f55d7583b66aa to your computer and use it in GitHub Desktop.
// 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