skip to Main Content

check our the url below, i’m using this in my codeigniter project.all files are implimented correctly.
but just when i click on my images its not open the lightbox.

http://untame.net/2013/02/twitter-bootstrap-build-a-responsive-lightbox-gallery/

This is the code for images li.

 <li class="span3">
        <a class="thumbnail" rel="lightbox[group]" href="/content/themes/sarova-hotels/assets/prettyphoto/img/pics/1.jpg">
        <img class="group1" src="/content/themes/sarova-hotels/assets/prettyphoto/img/pics/1.jpg" title="Image Title" />
        </a>
    </li> <!--end thumb -->

i don’t know this is prettyphoto error or not, but i’m getting this error in console:

Uncaught TypeError: $(...).quicksand is not a function

2

Answers


  1. This is has nothing to do with prettyphoto.
    Apparently you are using QuickSand Jquery plugin to do something like that.

    So in your current page you try to initialize QuickSand without embedding it’s Javascript File .

    So to fix that you need to do one of the following :

    • Embed jquery.quicksand.js in your page.
    • Remove the line that initialize QuickSand $('#YourId').quicksand from this page
    Login or Signup to reply.
  2. Try this:
    Some where else in your page $(...).quicksand() is referring. Delete this code and check.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search