Wait a minute, slow down. Go back to the way you had it when you were getting the alert:
Code:
Error: Div with ID "fadeshow1" not found on page.
That was probably fine, it probably just meant that you didn't have that division on every page. If so, just comment out that line in the script (line #50 in my copy, addition red):
Code:
. . . button=(setting.descreveal=="always")? '<img class="close" src="'+closebutt[0]+'" style="float:right;cursor:hand;cursor:pointer;width:'+closebutt[1]+'px;height:'+closebutt[2]+'px;margin-left:2px" title="Hide Description" />' : ''
var slideshow=this
jQuery(document).ready(function($){ //fire on DOM ready
var setting=slideshow.setting
var fullhtml=fadeSlideShow.routines.getFullHTML(setting.imagearray) //get full HTML of entire slideshow
setting.$wrapperdiv=$('#'+setting.wrapperid).css({position:'relative', visibility:'visible', background:'black', overflow:'hidden', width:setting.dimensions[0], height:setting.dimensions[1]}).empty() //main slideshow DIV
if (setting.$wrapperdiv.length==0){ //if no wrapper DIV found
//alert("Error: DIV with ID \""+setting.wrapperid+"\" not found on page.")
return
}
setting.$gallerylayers=$('<div class="gal . . .
This has come up before with WordPress and other CMS's. That's always taken care of it. There was one case where the page was invalid and that caused the error even though the fadeshow1 division was on the page, but that wasn't with a CMS.
If you want more help:
Please post a link to a page on your site that contains the problematic code so we can check it out.
Bookmarks