I continue to get the following error in my script:
line:19
char: 2424
Error: Exception thrown and not caught
code: 0
also have to put some string in:
<1i class=" "> statements.
can you advise? thanks in advance for your time and help. I have deleted a great part in the middle of the code because it is too long.
<!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" lang="en" xml:lang="en">
<!-- saved from url=(0014)about:internet -->
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
<meta name="keywords" content="Terry's watercolors, Photo album, Jalbum 8.5, Galleria" />
<meta name="description" content="Terry's watercolors" />
<meta name="medium" content="mult" />
<title>Terry's watercolors</title>
<link rel="image_src" href="slides/barn-and-farmhouse-1.JPG" />
<link href="res/galleria/galleria.css" rel="stylesheet" type="text/css" />
<link href="res/index.css" rel="stylesheet" type="text/css" />
<link href="res/styles.css" rel="stylesheet" type="text/css" />
<styletype="text/css">
.thumbnailsli{
border-style:double;
border-width:3px;
}
.thumbnailsli.active{
border-style:double;
border-width:3px;
}
#main_imageimg{
border-style:solid;
border-width:3px;
}
#middle_container{
height:510px;
}
#scroller_container,
#image_scroller{
width:742px;
}
#thumbnails_container{
width:3180px;
}
#scroller_container,
#image_scroller,
#thumbnails_container{
height:106px;
}
.thumbnailsli{
width:90px;
height:90px;
margin:010px10px0;
}
#right_arrow,
#left_arrow{
height:90px;
width:40px;
}
#bottom_container{
margin:30px0;
}
</style>
<script src="res/jquery.js" type="text/javascript"></script>
<script src="res/jquery.hotkeys.js" type="text/javascript"></script>
<script src="res/galleria/jquery.galleria.js" type="text/javascript"></script>
<script src="res/jquery.scrollimages.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$(".thumbnails_unstyled").addClass("thumbnails");
$("ul.thumbnails").galleria({
history:false,
clickNext:true,
insert:"#main_image",
onImage:function(image, caption, thumb){
image.css("display","none").fadeIn(500);
caption.css("display","none").fadeIn(500);
var _li = thumb.parents("li");
_li.siblings().children("img.selected").fadeTo(500,0.5);
thumb.fadeTo("fast",1).addClass("selected");
image.attr("title","Next image");
},
onThumb:function(thumb){
var _li = thumb.parents("li");
var _fadeTo = _li.is(".active") ? "1":0.5;
thumb.css({display:"none", opacity: _fadeTo}).fadeIn(1500);
thumb.hover(
function(){
thumb.fadeTo("fast",1);
},
function(){
_li.not(".active").children("img").fadeTo("fast",0.5);
}
)
},
preloads:3
});
</body>
</html>