Quote Originally Posted by andreitero View Post
I have the same problem, so far i tried modifying the loader.php sample to load some .js files on my home page, but it's not working as expected
PHP Code:
<?php

         $loaders
[] = array('conditions' => array('pages' => array('index_home')),
                                         
'jscript_files'             => array(
                                                                   
                                                                      
'jquery/jquery-1.4.2.min.js'  => 10,  
                                                                      
'fadeslideshow.js'                 => 11                                                                       
                                         
));
I am trying to load multiple .js files via loader and need to know what are these numbers for => 10, => 11. Are these sort orders?
Also do I need to move all .js files from includes/templates/yourtemplate/jscript to ..../jscript/jquery?