Skip to content

Instantly share code, notes, and snippets.

@leafnode
Created October 13, 2011 13:16
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 leafnode/1284186 to your computer and use it in GitHub Desktop.
Save leafnode/1284186 to your computer and use it in GitHub Desktop.
jQuery snippet for ZendCon timetable
$jq('input.customtimetable').click( function (e) { if ($jq(this).is(':checked') ) { $jq(this).parent().css('background', '#10a010'); } else { $jq(this).parent().css('background', '#E6E7E9'); } } );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment