I have the following code in my static_pages.js.coffee file and it works great, except when loading any other page on my site, this code runs and looks for .orders-chart. High Charts throws an error and breaks all my other jQuery if I don't have that div on the page.
jQuery ->
$ ->
new Highcharts.Chart
chart:
renderTo: "orders-chart"
title:
text: "Orders by Day"
xAxis:
type: "datetime"
yAxis:
title:
text: "Some Measurable"
series: [
pointInterval: 24 * 3600 * 1000
data: [1, 2, 3, 5, 7]
]
is there a way to check for .orders-chart before running this code? Or a better way of doing things?