1

I'm getting this JavaScript error with IE explorer:

'Slideshow is undefined'

The error points to this bit of code:

<script type="text/javascript">
new SlideShow('listOfImages');
</script>
2
  • 2
    Where is SlideShow defined? Commented Jan 4, 2010 at 0:59
  • Slideshow, or SlideShow? In JavaScript case is important. Commented Jan 4, 2010 at 1:39

2 Answers 2

1

May be you didn't include the required javascripts files for mootools

http://www.electricprism.com/aeron/slideshow/

http://code.google.com/p/slideshow/

for example, include mootools, and slideshow

<script type="text/javascript" src="js/mootools.js"></script>
<script type="text/javascript" src="js/slideshow.js"></script>
Sign up to request clarification or add additional context in comments.

Comments

1

SlideShow is a name of an object constructor. It has to be defined prior to its use in the script tag either in the embedded script or in a file loaded by the tag

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.