I want to put more than one jquery extension in the same file. I have the following in one file:
do($ = jQuery) ->
$.fn.addAlternatingStyles = ->
$(@).children('tr').not('.exclude').hover(
-> $(@).addClass('hoverrow')
-> $(@).removeClass('hoverrow')
)
do($ = jQuery) ->
$.fn.stripe = ->
$(@).children('tr:even').addClass('evenrow')
$(@).children('tr:odd').addClass('oddrow')
It does not recognise the second extension, i.e. stripe.
Can anyone point me in the right direction?
alert 'foo'right before the$.fn.stripe = ..., does it get run? – Trevor Burnham Oct 13 '11 at 16:16