Skip to content

Instantly share code, notes, and snippets.

@jerronimo
Created September 16, 2014 10:06
Show Gist options
  • Save jerronimo/53bdb1b284b06121be30 to your computer and use it in GitHub Desktop.
Save jerronimo/53bdb1b284b06121be30 to your computer and use it in GitHub Desktop.
$('#edit_stories_filter_name').change(function () {
var storiesName = $('#edit_stories_filter_name option:selected').text();
$('.story-item').fadeOut();
$('.story-item').each(function(){
if($(this).hasClass(storiesName)){
$(this).fadeIn();
}
console.log(storiesName);
});
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment