Kirsty Marks
Kirsty Marks

Reputation: 483

No Element found for Foo2 etc

http://www.gordonlundie.com/Howe/#

Im trying to sort my carousel towards the base of the page, and it is saying no element found.

Can anyone advise on this error? I believe that all the js is loaded correctly.

thankyou in advance

The error above is fixed, however it appears to still be jumping to the top of the page and not scrolling through the elements

Upvotes: 1

Views: 1585

Answers (1)

Justin Helgerson
Justin Helgerson

Reputation: 25541

You're calling carouFredSel on an element that doesn't exist.

As an example, you have this code:

$('#foo0').carouFredSel();

Without any element on the page with an id of foo0. You need to specify valid id's for your jQuery selector.

Upvotes: 1

Related Questions