Moodle, Including JQuery on dashboard page

Re: Moodle, Including JQuery on dashboard page

by Jonathan P. -
Number of replies: 0

Hey,

Inside the current theme in use,  the 'config.php' file should be the answer.
Either find the following code or add it :


/* List of javascript files that needs to be included on each page */

$THEME->javascripts_footer = array(
    'jquery-3.0.0.min',
    'anotherScript.js'

     .......

);


Cheers,

Jonathan.