Skip to content

Instantly share code, notes, and snippets.

@thebigbad
Created January 2, 2011 18:07
Show Gist options
  • Select an option

  • Save thebigbad/762695 to your computer and use it in GitHub Desktop.

Select an option

Save thebigbad/762695 to your computer and use it in GitHub Desktop.
<a id="last" href="#">last</a>
<img id="mug" count="4" src="mug4.png" />
<a id="next" href="#">next</a>
...
$('#last').click(function () {
var mug = $('#mug');
var count = mug.attr('count');
count = (count - 1) % 48;
mug.attr('count', count).src('mug' + count + '.png');
});
$('#next').click(function () {
var mug = $('#mug');
var count = mug.attr('count');
count = (count + 1) % 48;
mug.attr('count', count).src('mug' + count + '.png');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment