hello all.
I want to implement my first website, but I do not know jquery.
I activated the plugin 'plugin.indexpand.php' on the home page and I would like to insert a slideshow with innerfade.
To do this I copied the files in the folder jquery.innerfade.js JS and within index I created a first Exhibit called 'HOME', I put in the code:
<script type="text/javascript" src="{{baseurl}}/ndxzsite/js/jquery.js"></script>
<script type="text/javascript" src="{{baseurl}}/ndxzsite/js/jquery.innerfade.js"></script>
<script type="text/javascript">
$(document).ready(
function(){
$('ul#portfolio').innerfade({
speed: 1000,
timeout: 5000,
type: 'sequence',
containerheight: '220px'
});
});
</script>
<ul id="portfolio">
<li><img src="files/home/1.jpg" alt="1" /></a></li>
<li><img src="files/home/2.jpg" alt="2" /></a></li>
</ul>
my problem:
By entering this code, it works correctly the slideshow, but the menu remains open.
I made some tests and I realized the problem is in line
<script type="text/javascript" src="{{baseurl}}/ndxzsite/js/jquery.js"></script>
kepler2082.no-ip.biz">my site
there is a simple way to solve the problem?
thanks