Skip to content

Instantly share code, notes, and snippets.

@wofockham
Forked from tobyturnbullknokal/ffs
Last active July 12, 2016 01:40
Show Gist options
  • Save wofockham/01a65e4754f5a5e81f2bca177477b33b to your computer and use it in GitHub Desktop.
Save wofockham/01a65e4754f5a5e81f2bca177477b33b 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;
$('#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