I\'m pretty new to Javascript, Rails and JQuery all working together.
I\'m going through this tutorial (http://www.highcharts.com/documentation/how-to-use#installati
As we discussed in chat, there were a few missing pieces.
So, in short, you needed this in your layout:
Now going forward (assuming you are working w/ rails 3.1+), I'd suggest moving your javascripts to a more conventional location. In 3.1, rails likes to see it in app/assets/javascripts
but public/javascripts
is still fine, just not exactly conventional.
You will get a lot of milage by understanding the rails helpers to insert script tags and the Asset Pipeline.
Good luck!