I created the index.js file which is composed of the javascript code below:
$(document).ready(function() {
$("#menu").accordion({collapsible: true, active: false});
});
and I put it together with jquery-2.1.1.min.js inside the javascripts folder of the play framework project and intellij and wanted to use it in conjunction with an index.html code that is in the app- > project, but I can not how do I use the javascript code in conjunction with the html code of index.html?