Place jquery.js in your website root and use:
<script type="text/javascript" src="/jquery.js"></script>
If you want to put it say in a js folder, place the folder in root and do:
<script type="text/javascript" src="/js/jquery.js"></script>
Or you can try this:
<script type="text/javascript" src="<?=base_url();?>js/jquery.js"></script>
as described here
Luis
2010-06-11 13:23:04