I have a problem with running js/jquery in my rails app. I have Ruby 1.9.3 and Rails 3.2.3 installed.
I have two js files in /app/assets/javascripts:
application.js
main.js
I created this main.js. In it there is this code
$(document).ready(function() {
alert('Hello world!');
});
my application.js has the following:
//= require jquery
//= require jquery_ujs
//= require_tree .
//= require main.js
When I open my app, no alert message pops up!
Opening the source code, i see all the js files in place:
<script src="/assets/jquery.js?body=1" type="text/javascript"></script>
<script src="/assets/jquery_ujs.js?body=1" type="text/javascript"></script>
<script src="/assets/main.js?body=1" type="text/javascript"></script>
<script src="/assets/application.js?body=1" type="text/javascript"></script>
What I am doing wrong???
/assets/main.js?body=1path in your browser (e.g. localhost:3000/assets/main.js?body=1) – Dylan Markow May 9 '12 at 14:32