RailsでjQueryを使用するのは初めてで、クリックまたはホバーイベントで認識されるdivを取得できません。Coffeescriptも使用していますが、コンパイルは問題ないようです。Chrome開発ツールの要素ウィンドウではすべてのdivが見栄えがしますが、コンソールウィンドウにconsole.logが表示されません。
私の_form.html.hamlの一部
.field
= f.label :question
= f.text_field :question
%p Click the plus sign to add answers.
.field#answerone
= f.label :answers
= f.text_field :answers
#plusanswer
= image_tag("plusWhite.png", :alt => "plus sign")
.actions
= f.submit 'Save'
コーヒースクリプト:
$("#plusanswer").click ->
console.log("here we are")
$("#answerone").clone().appendto()
コンパイルされたJavaScript:
(function() {
$("#plusanswer").click(function() {
console.log("here we are");
return $("#answerone").clone().appendto();
});
}).call(this);
image_tagのやり方はめちゃくちゃですか?