Created
October 3, 2015 14:32
-
-
Save kvarga/2006b2c3d6815857d107 to your computer and use it in GitHub Desktop.
VegasInsider - Filter out games you don't care about
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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