Skip to content

Instantly share code, notes, and snippets.

@jlewin
Last active December 11, 2015 03:58
Show Gist options
  • Save jlewin/4541633 to your computer and use it in GitHub Desktop.
Save jlewin/4541633 to your computer and use it in GitHub Desktop.
Filter Cross-Reference to compare Arduino ADK to Mega2560 http://en.wikipedia.org/wiki/List_of_Arduino_boards_and_compatible_systems
// Of note: it took a while to discover why $('.wikitable tr').eq(0).siblings() was null but I finally
// noticed and accounted for the thead/tbody elements
$('.wikitable tbody tr').each(function() { if($(this).text().indexOf('2560') == -1) $(this).hide()});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment