Hi Nicolas,
in your template php: drupal_add_js(path_to_theme().'/js/plugin.js', 'theme', 'header'); if you want it for a specific node: /**
- Add JavaScript
*/ if ($nid = 14){ drupal_add_js(path_to_theme().'/js/plugin.js', 'theme', 'header'); }
you need to add your plugin to a folder named js in your theme folder.
It works. Thanks for your great help.