Check drupal_add_js () in a page template that doesn't work .
, drupal_add_js() ( drupal_add_css()) , js/css . , , drupal_get_js() :
function yourThemeName_preprocess_page(&$variables) {
if ('node' == arg(0) && 'add' == arg(1) && 'yourContentType' == arg(2)) {
drupal_add_js('path/to/your/file.js', 'theme');
$variables['scripts'] = drupal_get_js();
}
}
. preprocess_page, preprocess_node, javascript . , - (+1).