Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Themes /

Discuss SilverStripe Themes.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

how can I merge Javascript code


Go to End


2 Posts   3064 Views

Avatar
yaizo

Community Member, 19 Posts

1 July 2009 at 9:03pm

Edited: 01/07/2009 11:06pm

hallo,

I want to build a simple moseover and mouseout function into my navi (grafik-elements).
I have uploaded a code in: mysite->javascript->my.js -- (I tried it out already at a simple HTML file) --

then I inserted the following code in my head page.ss :

function init(){
parent::init();
Requirements::javascript("mysite/javascript/my.js");
}

hm? did i forget something.
thanks in advance. m.

Avatar
Willr

Forum Moderator, 5523 Posts

2 July 2009 at 12:03pm

Merge? You mean insert JS code into the page?. That should be all you need to do to include the JS on the page.

If you want to merge multiple JS files into 1 and include that you do

Requirements::combine_files('output.js', array('file1.js', 'file2.js'));