Jquery slideshow pics wont display.
Ok, I'm a little new to html and css but not super new.
I'm trying to add a Jquery slideshow to my webpage through squarespace.com
I'm using jquery-1.2.6.min.js and all the files that came with it. I "think" I downloaded it from a link in the squarespace forum.
http://developers.squarespace.com/design-coding/post/523669?currentPage=1
The slideshow is kind of working but it wont show the pictures, only the "Image 1...2...3" designation. And the "Image1..2" does scroll in order but the space for the pics is blank.
If I click on the blank space Firefox will open the picture and display it.
I'm working and doing all this through squarspaces front end web builder thing.
And ideas?
Thanks :)
Answered this with the help of Colby.
I had this code.
<div id="slideshow">
<div class="active">
<a href="http://www.YOURLINK.COM"><img src="/storage/jquery/images/image1.jpg" alt="Slideshow Image 1" /></a>
</div>
And it appears is should be this:
<div id="slideshow">
<div class="active">
<img src="http://www.YOURLINK.COM to your image file" alt="Slideshow Image 1" /></a>
</div>
Thats how mine is now and it works.