vote up -1 vote down star

Can't seem to get my lightbox to work. Any ideas?

<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" type="text/css" href="css/jquery.lightbox-0.5.css" media="screen" />

<title>WildFire</title>

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.lightbox-0.5.pack.js"></script>


<script type="text/javascript">
$(function() {
    // Use this example, or...
    $('a[@rel*=lightbox]').lightBox(); // Select all links that contains lightbox in the attribute rel

});
</script>


</head>

<body>

<div id="wrapper">

<div id="body">


<img src="images/tempbar.png">

<div id="text">

<img class="logo" src="images/logo.png">


<ul class="info">
<li>Hours: </li>
<p>
<li> Lunch 11am - 3pm </li>
<li> Dinner 5pm - 10pm </li>
<p>
<li>Phone: </li>
<p>
<li>(607) 277-9143</li>
<p>
<li>Address: </li>
<p>
<li> 106 S Cayuga St </li>
<li>Ithaca, NY 14850 </li>


</ul>

<p class="linkouts">

<a rel="lightbox" "href="images/lunch.png">
<img src="images/lunchlink.png">
</a>

<p>


<img src="images/dinnerlink.png">


</div>



</div>

<div id="footer">

For Lounge Events Find Us On 

<a href="http://www.facebook.com/pages/Ithaca-NY/WildFire-Lounge/144229581885?ref=ts" target="_blank">
<img class ="fb" src="images/loungefb.png">
</a>

Come Visit

<a href="http://www.madelines-restaurant.com/" target="_blank">
<img class="mad" src="images/madelineslogo.png">
</a>

And Our Friend

<a href="http://www.stateofithaca.com/" target="_blank">
<img class="state" src="images/stlogo.png"
</a>


</div>


</div>
</body>
</html>
flag

50% accept rate
1  
I suggest you post some code or at least a link - we're not mind readers, after all. – Frank DeRosa Nov 7 at 6:34
Let there be code!!! @daveywhitney In future, select the code and hit Ctrl-K to format it. html tags in the unformatted code will be treated as html tags themselves and won't be displayed. – Amarghosh Nov 7 at 8:09
sorry, i'm new here. thanks for the tip, – Davey Nov 7 at 15:21
Your example code works for me with both the bugs noted by fudgey and Phil.Wheeler... (using G hosted jQuery 1.3.2) – beggs Nov 9 at 7:25

2 Answers

vote up 1 vote down

Without testing anything else or looking closely at the problem, have you tried removing the incorrectly-placed quote mark from before the href attribute?

<a rel="lightbox" href="images/lunch.png">
<img src="images/lunchlink.png">
</a>
link|flag
vote up 1 vote down

Your selector is incorrect, the "@" is no longer used (deprecated, LOL I couldn't think of the word without my morning caffiene). Try this instead:

$(function() {
 $('a[rel="lightbox"]').lightBox();
});
link|flag
Did you mean deprecated? – Amarghosh Nov 9 at 5:54
LOL I never claimed I could read properly either... – fudgey Nov 9 at 7:16

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.