AJAX slideviewer help needed

Hmm. It seems to work fine for me, but there could be any number of circumstances that cause this. Here is the code I used (using images of my own) to get the script to work. It's actually a pretty cool script.

Code:
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us" dir="ltr">
 <head>
  <title>Slideshow Testing</title>
  <meta http-equiv="Conent-type" content="text/html; charset=utf-8" />
  <script type="text/javascript"
      src="http://slideshow.triptracker.net/slide.js"></script>
  <script type="text/javascript">
  <!--
    var viewer = new PhotoViewer();
    viewer.add('sierra.jpg');
    viewer.add('mgmCoffee.jpg');
    viewer.add('mgm_wa.jpg');
  //-->
  </script>
 </head>
 <body>
  <a href="javascript:void(viewer.show(0))">Slideshow</a>
 </body>
</html>

What does your code look like?
 
Back
Top Bottom