There is a simple and effective hack to get two Fade-in slideshow scripts working on 'one page'. The solution is to use three pages! Using two iframes on one page like so:
HTML Code:
<html>
<head>
<title>Two Fading Slide Shows - Demo</title>
</head>
<body>
<iframe src="slide_show1.htm" width="145" height="260" scrolling="no" frameborder="0"></iframe>
<iframe src="slide_show2.htm" width="145" height="260" scrolling="no" frameborder="0"></iframe>
</body>
</html>
You can adjust the height and width as needed to match the size of each slide show and place each iframe wherever you want in your layout. Then just make up the two slide shows as needed. I've tested this and it works great in IE6 and NS7.2.
Bookmarks