Javascript einbinden: scriptaculous PROBLEM!
Eingetragen von FlorianAGAI (168)
am 11.06.2007 - 09:08 Uhr in
am 11.06.2007 - 09:08 Uhr in
Hallo Community,
Ich möchte gerne in mein Theme Javascript einbinden ( zusätzliches ) Ich habe also die Scripte in mein Themeverzeichnis "/themexy/js" kopiert und in den header der page.tpl.php das hier geschrieben:
<head>
<title><?php print $head_title ?></title>
<?php print $head ?>
<?php print $styles ?>
<?php print $scripts ?>
<script src="js/prototype.js" type="text/javascript"></script>
<script src="js/scriptaculous.js" type="text/javascript"></script>
</head>
Leider läd dann garnichts?? Im Quelltext meiner Seite ( aus dem Browser heraus ) steht dann auch nichts von den zusätzlichen Skripten :( So sieht das das dann aus :
<head>
<title>I cram! | I f00 know!</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="http://www.icram.de/?q=blogapi/rsd" />
<link rel="alternate" type="application/rss+xml" title="I cram! RSS" href="http://www.icram.de/?q=rss.xml" />
<link rel="shortcut icon" href="/misc/favicon.ico" type="image/x-icon" />
<style type="text/css" media="all">@import "/modules/aggregator/aggregator.css";</style>
<style type="text/css" media="all">@import "/modules/book/book.css";</style>
<style type="text/css" media="all">@import "/modules/cck/content.css";</style>
<style type="text/css" media="all">@import "/modules/cck/fieldgroup.css";</style>
<style type="text/css" media="all">@import "/modules/forum/forum.css";</style>
<style type="text/css" media="all">@import "/modules/node/node.css";</style>
<style type="text/css" media="all">@import "/modules/system/defaults.css";</style>
<style type="text/css" media="all">@import "/modules/system/system.css";</style>
<style type="text/css" media="all">@import "/modules/tagadelic/tagadelic.css";</style>
<style type="text/css" media="all">@import "/modules/user/user.css";</style>
<style type="text/css" media="all">@import "/themes/greenhouse-5.x-1.x-dev/greenhouse/style.css";</style>
<script type="text/javascript"> </script>
</head>
Kann mir da jemand helfen?
Gruß Flo
- Anmelden oder Registrieren um Kommentare zu schreiben
drupal_add_js
am 12.06.2007 - 18:24 Uhr
Besser ist es, Java-Script mit der Funktion drupal_add_js einzufügen. So: @drupal_add_js("pfad-zum/javascript.js")@
http://api.drupal.org/api/5/function/drupal_add_js
--
bv - drupalcenter.de
THX
am 18.06.2007 - 14:53 Uhr
4 that!