-1

Can anyone tell me where the heck I'm going wrong with the implementation of this jQuery Cycle.js plugin please?

What do you see when you visit the link below? Coz all I see are 3 pics in a row, NOT a clickable prev/next slideshow.

http://www.cressidahaughton.co.uk/Untitled-4.html

Thanks in advance

Also related to Q image cycle jQuery

Community
  • 1
  • 1
Cress
  • 65
  • 2
  • 11

1 Answers1

1

The selector is wrong, it should be $('.pics'), not $('pics')


Just for educational purposes:

When a selector starts without an special character (like hash, dot or colon) you basically are looking for tags. So in this case you are looking for:

<pics></pics>

instead of

<div class="pics"></div>
Ivan Castellanos
  • 8,041
  • 1
  • 47
  • 42