外部Js在codeigniter中不起作用

Please click here to see Structure of my project

Trying to include map from http://www.vincentbroute.fr/mapael/ in my tenant.php

Using :

<script src="<?php echo base_url();?>js/jquery.mapael.js" type="text/javascript" >  </script>
<link rel="stylesheet" href="<?php echo base_url();?>js/jquery.mapael.js" />

<script src="<?php echo base_url();?>js/world_countries.js" type="text/javascript" >  </script>
<link rel="stylesheet" href="<?php echo base_url();?>js/world_countries.js" />

Please help . I am new to codeigniter but i worked on php . Please help in detail that where should i keep my js file and code in detail .

Create a new folder on your root folder(where the application and system folders are there) and call it assets. Put js folder inside of it. Then, you can use this structure:

<script src="<?php echo site_url('assets/js/jquery.mapael.js');?>" type="text/javascript" ></script>
<script src="<?php echo site_url('assets/js/world_countries.js');?>" type="text/javascript" ></script>