It could be a lot of things. First off, test in the browser, not in some editor's Preview Mode. If there's still a problem, here's what I would suggest -
Use only one copy of jQuery:
Get rid of:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
and:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
Use just:
Code:
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6/jquery.min.js"></script>
and place that just once in the head before the tags for the fadeslideshow.js and ddsmoothmenu.js scripts.
Then using a text only editor like NotePad, edit the fadeslideshow.js script commenting out the noConflict line like so:
Code:
/* Ultimate Fade-in slideshow (v2.4)
* Last updated: May 24th, 2010. This notice must stay intact for usage
* Author: Dynamic Drive at http://www.dynamicdrive.com/
* Visit http://www.dynamicdrive.com/ for full source code
*/
//Oct 6th, 09' (v2.1): Adds option to randomize display order of images, via new option displaymode.randomize
//May 24th, 10' (v2.4): Adds new "peakaboo" option to "descreveal" setting. oninit and onslide event handlers added.
var fadeSlideShow_descpanel={
controls: [['x.png',7,7], ['restore.png',10,11], ['loading.gif',54,55]], //full URL and dimensions of close, restore, and loading images
fontStyle: 'normal 11px Verdana', //font style for text descriptions
slidespeed: 200 //speed of description panel animation (in millisec)
}
//No need to edit beyond here...
//jQuery.noConflict()
function fadeSlideShow(settingarg){
this.setting=sett . . .
Counterintuitive I know, but noConflict is for use with other script libraries, not when jQuery is the only script library on the page.
Use that version of fadeslisow.js and refresh the page.
If that doesn't fix things, you will need to put up a live demo of the problem and give us a link to it so we can check it out.
Bookmarks