Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Putting this code in

$('#hello').click ->
  alert 'hello'

in posts.js.coffee in vanilla Rails 3.1 app does not work. The javascript is compiled and loaded before the page so the function isn't bound to its element. There are easy solutions, like manually loading the js on the page rather than using the asset pipeline, or using JQuery .live functions, but it seems like this code should work out of the box. Am I missing something??

share|improve this question

1 Answer

up vote 1 down vote accepted

I might be pointing out the obvious here, but have you (in jQuery) tried this:

$(function(){    
    //your code
    $('#hello').click(function(){
    alert("hello");
    });
});

or

$(document).ready(function(){ [...] });

These (atleast under normal circumstances) should prevent any javascript inside from doing anything until the DOM has been loaded.

Hope this helps

share|improve this answer
Ugh. That of course is it. Thank you for answering such a boneheaded question. – Gavin Sep 14 '11 at 11:30
:) no problem, glad to have helped – jammypeach Sep 14 '11 at 13:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.