Skip to content

Instantly share code, notes, and snippets.

@irae
Created May 3, 2010 05:29
Show Gist options
  • Save irae/387790 to your computer and use it in GitHub Desktop.
Save irae/387790 to your computer and use it in GitHub Desktop.
// handle filters with only one event
$('#filters').delegate(':radio','change', function(){
var active = $('#filters :radio:checked').val();
$('#stickers')
.removeClass()
.addClass('filter-'+active);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment