Looks good to me, too.
I'm not very confident that this will work, but you might want to try
changing your references to be "root relative" rather than "document
relative":
So, instead of
"../../assets/js/jquery-1.2.6.js"
just do
"/assets/js/jquery-1.2.6.js"
with all of the js and css files.
Also, I noticed that you have an extra "/" in the reference to the
easing script:
<script type="text/javascript" src="../..//assets/js/easing.js"></
script>
Can't think of what else might be causing the problems for your friend.
--Karl
____________
Karl Swedberg
www.englishrules.com
www.learningjquery.com
On Jan 7, 2009, at 6:40 AM, Mike Alsup wrote:
Hello, I am using JQuery 1.2.6, lightbox .5, and cycle together to
create a slideshow feature for a site i'm doing.
the scripts load for me on my computer, but not for my client using
(he tried two machines IE 6, firefox 3) it just tiles all images
vertically and lightbox doesn't function.
http://www.shervinetaat.com/films/bandits/index.html
Could someone verify that I am initializing everything correctly, I'm
new to jQuery:
<script type="text/javascript">
$(document).ready(function() {
$('#slideshow').cycle({
fx: 'fade', // transition type
timeout: 0, // time (ms) between beginning of each
transition
speedIn: 100,
speedOut: 100,
next: '#next',
prev: '#prev',
pause: 1
});
$(function() {
$('a...@rel*=lightbox]').lightBox(); // attribute rel
});
});
</script>
Looks good. You link works for me. Tested in FF3, IE6, Opera9.63,
Chrome.
Mike