Skip to content

Instantly share code, notes, and snippets.

@thewisenerd
Created June 30, 2017 23:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thewisenerd/13647e8c2bb04dee16c27d64a226d048 to your computer and use it in GitHub Desktop.
Save thewisenerd/13647e8c2bb04dee16c27d64a226d048 to your computer and use it in GitHub Desktop.
window.xcopya = jQuery('#xwikicontent table tr');
jQuery.each(window.xcopya, function(i, row) {
chipsets = ['msm8916_64'];
cols = jQuery(row).find('td');
date = cols[0]
tag = cols[1]
chipset = cols[2]
manifest = cols[3]
droidv = cols[4]
if (chipsets.indexOf(jQuery(chipset).text().strip()) == -1) {
jQuery(window.xcopya)[i].remove()
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment