> Thanks for helping me out. I've added:
> <script type="text/javascript" src="jquery-1.2.6.min.js"></script>
>
> Still not working, can you please check?
>
> Regards,
> Sultan Arefin

Hi Sultan,

You need to change this line:

$('#slideshow1').cycle();

to this:

$(document).ready(function() {
    $('#slideshow1').cycle();
});

Here's an explanation:

http://docs.jquery.com/Tutorials:Introducing_$(document).ready()

Mike


Reply via email to