I have a beginner question.
I am uesing a few plugins for my site. I included jquery , and jquery ui in my header like this
<script type="text/javascript" src="<?php echo base_url(); ?>js/jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="<?php echo base_url(); ?>js/jquery-ui.min.js"></script>
and i included the main js file what i created for global stuff on the site in the footer.
So i dont really want to include the js in the footer what takes effect only on like: the details page
os is it ok if i include jquery in the header, include the main js in the footer, and include the details js in the details view file?
thank you for the advice