Skip to content

Instantly share code, notes, and snippets.

@bicherele
Forked from friggeri/gist:1570840
Created March 13, 2012 16:12
Show Gist options
  • Save bicherele/2029646 to your computer and use it in GitHub Desktop.
Save bicherele/2029646 to your computer and use it in GitHub Desktop.
More CoffeeScriptish
do ($ = jQuery) ->
$.fn.zebraTable = (options) ->
defaults =
evenColor: '#ccc'
oddColor : '#eee'
options = $.extend(defaults, options)
@each ->
$("tr:even", @).css('background-color', options.evenColor)
$("tr:odd", @).css('background-color', options.oddColor)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment