Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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>
share|improve this question
i love people just give me -1 without telling me the reason. – FlyingCat Aug 2 '12 at 1:00
How are you sure that js/jquery.lightbox-0.5.js is loaded? If it's loaded, you should not get an error object has no method lightBox – Juan Mendes Aug 2 '12 at 1:03
@Juan I added in my html script. Are there other ways to test it? – FlyingCat Aug 2 '12 at 1:06
use the inspector in your browser to see if the script is not loading, or try hitting the script's url directly – Andy Ray Aug 2 '12 at 1:17
What happen with $('img').lightBox();? By the way, I think you must initialize lightbox after images are loaded, in ajax callback, try lightbox().init() (ro initialize(), start()... I do not know the correct syntax). – Alex Ball Aug 2 '12 at 5:26

1 Answer

In my case i found conflict between JQuery and $

changing document ready was the solution

 <script type='text/javascript'> 

    $(document).ready(function(){   

        $('#image img').lightBox(); }) 

 </script>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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