Add JavaScript to specific node

  1. /**
  2.  * Add JavaScript
  3.  */
  4. if ($_GET['q'] == 'node/14'){
  5.         function drupal_add_custom_js($data = NULL, $type = 'theme', $scope = 'header', $defer = FALSE, $cache = TRUE) {
  6.             _drupal_add_js('sites/all/themes/forestry/js/jquery.scrollTo-1.3.3-min.js', 'theme', 'header', FALSE, $cache);
  7.             _drupal_add_js('sites/all/themes/forestry/js/jquery.localscroll-1.2.6-min.js', 'theme', 'header', FALSE, $cache);
  8.             _drupal_add_js('sites/all/themes/forestry/js/toc.js', 'theme', 'header', FALSE, $cache);
  9.           return _drupal_add_js($data, $type, $scope, $defer, $cache);
  10.         }
  11.         drupal_add_custom_js($data = NULL, $type = 'theme', $scope = 'header', $defer = FALSE, $cache = TRUE);
  12. }