Reputation: 323
i want to include one javascript file in the footer? I try like this, but its not including in the footer.
drupal_add_js(drupal_get_path('module','book') . '/js/visitsChart.js', array(
'scope' => 'footer'));
Please help me
Upvotes: 0
Views: 545
Reputation: 180
It should be
drupal_add_js(drupal_get_path('module','book') . '/js/visitsChart.js','module','footer');
Upvotes: 3