Pergunta

I have read that I can add js and css file via .info files. Can I add external css and js files there as well? Eg http://somewhere.com/in_a_galaxy

Foi útil?

Solução

External JS/CSS files can't be specified in the info file at all. You need to add them via hooks, typically I use THEMENAME_preprocess_page() for things that need to be included on all pages, or you can use drupal_add_js() in your .module file.

And you can refer to this page. Here you can see how many ways you can add script/css files.

Outras dicas

To add external javascript.

drupal_add_js('http://example.com/example.js', 'external');

To add external css.

drupal_add_css('https://fonts.googleapis.com/css?family=Droid+Serif:regular', 'external');
Licenciado em: CC-BY-SA com atribuição
Não afiliado a drupal.stackexchange
scroll top