Add some .js file

i want to add a some .js script like this..
ex : <script src="http://example.com/js/animation.js" type="text/javascript" charset="UTF-8"></script>
0
i want to add a some .js script like this..
ex : <script src="http://example.com/js/animation.js" type="text/javascript" charset="UTF-8"></script>
Comments
Find following lines in
class.minusbaselinethemehooks.php
:and add
$Sender->AddJsFile($this->GetResource('js/animation.js', false, false));
below. You also have to put your js file in the js folder of the MinusBasline theme.thanks.
but i want to add some .js Link
after add this code my site load blank page
Try
$Sender->AddJsFile('animation.js');
instead of the above.Great @R_J
it work! 