<html>
<head>
<title>Simple JavaScript Lightbox</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<script language="javascript" src="mylightbox.js"></script>
<script language="javascript" type="text/javascript">
myObject = new mylightbox();
</script>
</head>
<body>
<div id="outer"></div>
<div id="inner">
<div id="close" onClick="myObject.hideLightbox()">X</div>
<span id="content">Content Will Come Here</span>
</div>
<a href="javascript: void(0);" onClick="myObject.showLightBox();">Click Here</a> to view Lightbox
</body>
</html>
|