Try

$ ->
  $('#events a').lightBox()
  $("#slider").easySlider
      auto: true
      continuous: true

There is an online js to coffeescript converter out there, I just can't find
the link right now too.



On Fri, Jul 22, 2011 at 9:19 PM, Tomas R. <[email protected]> wrote:

> I convert my old JS files into CoffeeScript, In my public controller I
> used this functions
>
> $('#events a').lightBox()
>
> $(document).ready ->
>
>  $("#slider").easySlider
>    auto: true,
>    continuous: true
>
> they load inside application.js like this
>
> (function() {
>  $('#events a').lightBox();
>  $(document).ready(function() {
>    $("#slider").easySlider({
>      auto: true,
>      continuous: true
>    });
> });
>
> but it doesnt seems to work, also tried with an alert "hello" and doesnt
> work neither, what i'm doing wrong?
>
> --
> Posted via http://www.ruby-forum.com/.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to