Skip to content

Instantly share code, notes, and snippets.

@jwdeane
Created March 19, 2009 13:51
Show Gist options
  • Save jwdeane/81823 to your computer and use it in GitHub Desktop.
Save jwdeane/81823 to your computer and use it in GitHub Desktop.
incrementer
// Incrementer
$(document).ready(function() {
val = $('#episode').val();
$('#minus').click(function() {
if (val>0) {
$('#episode').attr('value', --val);
console.log(val);
} else if (val=0) {
return false;
};
});
$('#plus').click(function() {
$('#episode').attr('value', ++val);
console.log(val);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment