Skip to content

Instantly share code, notes, and snippets.

@kvarga
Created October 3, 2015 14:32
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 kvarga/2006b2c3d6815857d107 to your computer and use it in GitHub Desktop.
Save kvarga/2006b2c3d6815857d107 to your computer and use it in GitHub Desktop.
VegasInsider - Filter out games you don't care about
// Vegas Insider
// http://www.vegasinsider.com/college-football/odds/las-vegas/?s=246
// This hides all rows without a certain name in the team name field.
var x='Alabama'
$(".viBodyBorderNorm table:nth-child(2) tr").hide()
$(".tabletext:contains('"+x+"')").parent().parent().parent().show()
$(".tabletext:contains('"+x+"')").parent().parent().parent().next().show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment