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'm trying to Callback Jquery Quicksand After Adding more items to the photoshow. I am very new to this Jquery and sometimes it gets confusing.

The working "pagination" is here http://www.jonathansconstruction.com/twitter_style/twitter_style_pagination.php and the quicksand plugin where i'm trying to integrate is "half-way' working here. http://jcons2.us.cloudlogin.co/project1.php As you can see. WHen Clicking "more" it does not add more categories to the gallery and when i click on one of the categories it comes back to three pictures again. Once I have it working i plan on starting with 10 pictures, however, I am using 3 at the moment for testing. Below are my Codes..

script.js (for quicksand)

$(document).ready(function(){

var items = $('.photo_show figure'),
    itemsByTags = {};

// Looping though all the li items:

items.each(function(i){
    var elem = $(this),
        tags = elem.data('tags').split(',');

    // Adding a data-id attribute. Required by the Quicksand plugin:
    elem.attr('data-id',i);

    $.each(tags,function(key,value){

        // Removing extra whitespace:
        value = $.trim(value);

        if(!(value in itemsByTags)){
            // Create an empty array to hold this item:
            itemsByTags[value] = [];
        }

        // Each item is added to one array per tag:
        itemsByTags[value].push(elem);
    });

});

// Creating the "Everything" option in the menu:
createList('View All',items);

// Looping though the arrays in itemsByTags:
$.each(itemsByTags,function(k,v){
    createList(k,v);
});

$('#gallery_menu nav a').live('click',function(e){
    var link = $(this);

    link.addClass('current').siblings().removeClass('current');

    // Using the Quicksand plugin to animate the li items.
    // It uses data('list') defined by our createList function:

    $('.photo_show').quicksand(link.data('list').find('figure'), function(){

adjustHeight = 'dynamic';
initLytebox();

    });
    e.preventDefault();
});

$('#gallery_menu nav a:first').click();

function createList(text,items){

    // This is a helper function that takes the
    // text of a menu button and array of li items

    // Creating an empty unordered list:
    var ul = $('<ul>',{'class':'hidden'});

    $.each(items,function(){
        // Creating a copy of each li item
        // and adding it to the list:

        $(this).clone().appendTo(ul);
    });

    ul.appendTo('.photo_show');

    // Creating a menu item. The unordered list is added
    // as a data parameter (available via .data('list'):

    var a = $('<a>',{
        html: text,
        href:'#',
        data: {list:ul}
    }).appendTo('#gallery_menu nav');
}
 });

The Jquery for "twitter pagination"

$(function() {//When the Dom is ready

  $('.load_more').live("click",function() {//If user clicks on hyperlink with class name    = load_more
  var last_msg_id = $(this).attr("id");
 //Get the id of this hyperlink 
//this id indicate the row id in the database 
if(last_msg_id!='end'){
//if  the hyperlink id is not equal to "end"
$.ajax({//Make the Ajax Request
type: "POST",
url: "project_more.php",
 data: "lastmsg="+ last_msg_id, 
beforeSend:  function() {
$('a.load_more').html('<img src="images/loading.gif" />');//Loading image during the  Ajax Request

 },
 success: function(html){//html = the server response html code
 $("#more").remove();//Remove the div with id=more 
$("#updates").append(html);//Append the html returned by the server .

  }
  });

  }









 return false;


});
});

and here is the php part of the code, although the php should be fine

   <?php
  $query ="select * from IMG_gallery ORDER BY id ASC LIMIT 3";
      $result = mysqli_query($dbc,$query);
      while($row=mysqli_fetch_array($result,MYSQLI_ASSOC))
     {
    $msg_id=$row['id'];
  $message=$row['img_filename'];
 ?>
    <figure data-tags="<?php echo $row['category'];?>"><a href="portfolio/<?php echo     $message;?>" class="lytebox" data-lyte-options="group:<?php echo $row['category'];?>" data-  title="<?php echo $row['title'];?>" data-description="<?php echo $row['description'];?>"> <img src="scripts/thumbnailer.php?img=/portfolio/<?php echo $message;?>&amp;mw=120&mh=87"  width="120" height="87" alt="Click here to view Larger image"></a>
  <figcaption><?php echo $row['title'];?></figcaption></figure>
<?php } ?>

that is on the main page, the "project-more" page has this code also.

        <?php 
        if(isset($_POST['lastmsg']) &&is_numeric($_POST['lastmsg']))
       { 
       $lastmsg=$_POST['lastmsg'];
        $query="select * from IMG_gallery where id>'$lastmsg' order by id asc limit 3";
      $result = mysqli_query($dbc,$query);
    while($row=mysqli_fetch_array($result,MYSQLI_ASSOC))
    { 
      $msg_id=$row['id'];
      $message=$row['img_filename'];
      ?>


       <figure data-tags="<?php echo $row['category'];?>"><a href="portfolio/<?php echo $message;?  >" class="lytebox" data-lyte-options="group:<?php echo $row['category'];?>" data-title="<? php echo $row['title'];?>" data-description="<?php echo $row['description'];?>"><img  src="scripts/thumbnailer.php?img=/portfolio/<?php echo $message;?>&amp;mw=120&mh=87"   width="120" height="87" alt="Click here to view Larger image"></a>
         <figcaption><?php echo $row['title'];?></figcaption></figure>


         <?php
      }


     ?>



    <?php

    if( mysqli_num_rows($result)==3){
   ?> 



       <div id="more" style="margin-top:20px;">
         <a  id="<?php echo $msg_id; ?>" class="load_more" href="#"><?php

      ?>more</a>  </div>





     <?php
     }else {

    echo '   <div id="more">
     <a  id="end" class="load_more" href="#">No More Posts </a>  </div>';

         }
     }
       ?>

I hope I was clear enough if not please ask, any help is greatly apreciated thanks Santiago

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.