Can someone help me with the jquery lightbox plugin?
I am using this:
http://leandrovieira.com/projects/jquery/lightbox/
I put everything in the page, but the box does not come up, it just links directly to the image.
Here is the code I am using:
-
- <!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">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
- <title>template_1</title>
- <style type="text/css">
- body {
- background-image: url(templates/bg_repeater.jpg);
- background-repeat: repeat;
- }td img {display: block;}
- </style>
- <link href="css/main.css" rel="stylesheet" type="text/css" />
- <link href="jquery.cycle/css/cycle.css" rel="stylesheet" type="text/css" />
- <link rel="stylesheet" type="text/css" href="jquery-lightbox-0/css/jquery.lightbox-0.5.css" media="screen" />
- <script type="text/javascript" src="jquery-lightbox-0/js/jquery.js"></script>
- <script type="text/javascript" src="jquery-lightbox-0/js/jquery.lightbox-0.4.js"></script>
- <script type="text/javascript">
- $(function() {
- $('#content_middle a').lightBox();
- });
- </script>
- <!--javascript-->
- <!-- include jQuery library -->
- <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <!-- include Cycle plugin -->
- <script type="text/javascript" src="jquery.cycle/jquery.cycle.all.min.js"></script>
- <!-- initialize the slideshow when the DOM is ready -->
- <script type="text/javascript">
- $(document).ready(function() {
- $('#s4').after('<div id="nav">').cycle({
- fx: 'scrollHorz',
- speed: 'slow',
- timeout: 3000,
- pager: '#nav',
- pagerAnchorBuilder: function(index, el) {
- return '<a href="#"><img src="jquery.cycle/Images/blank.png"> </a>'; // whatever markup you want
- }
- });
- });
- </script>
- </head>
- <body>
- <div id="wrapper">
-
- <div id="site_title"></div>
-
- <div id="menu">
- <ul id="navigation">
- <li id="navigation-1"><a href="index.html" title="Home"><span>Home</span></a></li>
- <li id="navigation-2"><a href="portfolio.html" title="Lorem Ipsum"><span>Lorem Ipsum</span></a></li>
- <li id="navigation-3"><a href="#" title="Lorem Ipsum"><span>Lorem Ipsum</span></a></li>
- <li id="navigation-4"><a href="#" title="Lorem Ipsum"><span>Lorem Ipsum</span></a></li>
- <li id="navigation-5"><a href="#" title="Lorem Ipsum"><span>Lorem Ipsum</span></a></li>
- </ul
-
- ></div>
-
- <div id="content_top_round">
- </div>
-
- <div id="content_middle">
-
- <a href="jquery-lightbox-0/photos/image1.jpg"><img src="jquery-lightbox-0/photos/sample1.jpg" width="246" height="123" alt="" /></a>
-
-
- </div>
- <div id="content_bottom_round"></div>
- <div id="temp_spacer"></div>
-
-
-
-
- <div id="footer">© 2010 Copyright sitename. All Rights Reserved.</div>
-
- </div>
- </body>
- </html>
Can someone tell me why my lightbox is not coming up and how I can get it to come up?