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.

Reply via email to