Link to home
Start Free TrialLog in
Avatar of shampouya
shampouya

asked on

Why is my jquery slideshow moving in a strange direction?

Does anyone know why the first transition in my JQuery slideshow moves to the bottom-left rather than straight down? I'm using the jquery.cycle.all.js plugin to create the effect, but I don't understand why it starts off moving in a weird direction.

my webpage
Avatar of Gurvinder Pal Singh
Gurvinder Pal Singh
Flag of India image

I tested your code in FF2 and chrome6. It is not moving in any direction. Looks fine to me
I can verify that the first image drops down to the left while subsequent images turndown as expected. My conclusion is that your jquery.js file is not working for you. Try replacing your js include for the jquery library with this:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

It fixed it in my test.

On a side note, there are a ton of validation errors in the html but I don't think they are having an affect on the problem cited.
Avatar of shampouya
shampouya

ASKER

Hmm I added the script tag that you showed above and it doesn't seem to be solving the problem, see link below. Also, what are the validation errors? I'm new to this so I don't know too much about validation.

my webpage
ASKER CERTIFIED SOLUTION
Avatar of Tom Beck
Tom Beck
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Thanks, that worked. And I'll have to read up on this validation site, looks helpful.