Skip to content

Instantly share code, notes, and snippets.

@h-collector
Created November 20, 2013 15:12
Show Gist options
  • Save h-collector/7564760 to your computer and use it in GitHub Desktop.
Save h-collector/7564760 to your computer and use it in GitHub Desktop.
list only english releases on www.batoto.net
(function($){
$(function(){
var eng = true;
$('tr.header').siblings().each(function(){
var row = $(this);
if(row.attr('class').split(' ').length > 1){
eng = row.hasClass('lang_English');
}
if(!eng) row.hide();
});
});
})(jQuery);
if(typeof jQuery.fn.textfill === 'undefined')
jQuery.fn.textfill = function(){}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment