I am trying to apply lightbox to my div.
I have jquery file and lightbox.js loaded but still getting Object has no method lightBox error message. I was wondering if someone can help me out on this one. Thanks a lot!
<link rel="stylesheet" href="css/basic/basic.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="css/basic/jquery.lightbox-0.5.css" type="text/css" media="screen"/>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.js'></script>
<scirpt type="text/javascript" src="js/jquery.lightbox-0.5.js"></script>
<script type='text/javascript'>
$(document).ready(function(){
$('#image img').lightBox();
})
</script>
<div id='image'>
/**/these images are generated from ajax call. not sure if it's relevant.**
<img src='a.jpg'/>
<img src='b.jpg'/>
<img src='c.jpg'/>
</div>
js/jquery.lightbox-0.5.jsis loaded? If it's loaded, you should not get an errorobject has no method lightBox– Juan Mendes Aug 2 '12 at 1:03