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 making a image browser where I'm loading images from the selected map. When I click on a list item, the images of that item will show in the div next to it. I do this with a .load function in jQuery and sending multiple parameters with it to another page where the images will be shown from the database.

The issue is that every time I click on a list item, it's firing multiple times and when I keep clicking it's firing many more times. I use a ajaxSend and a ajaxComplete to track this. In the console you will see: Load, load, done. The second time: (2)load, load, done, (2) done etc. For me it's not making any sense

imagebrowser.php

<body>

<div id="wrap_browser">
<div id="folders">
<ul>
<li id="folder_header">Mappen</li>
<?

    $sql = "SELECT * FROM `image_folders`";
    $query = mysql_query($sql) or die ("Fout in query:".$sql."<br><br>".mysql_error());
    while($folder = mysql_fetch_assoc($query)) {
        echo '<li><a class="page" href ="#" rel="'.$folder['id'].'">'.$folder['name'].'</a></li>';
    } 

//Modules   
        echo '<li><a class="module" href ="#" rel="'.$module['imagemodule'].'">Modules</a></li>';
?>
</ul>
</div>
<div id="gallery"></div>
<div id="submit_bar">
    <form method="POST">
        <input type="submit" value="Toevoegen" name="addImg" />
    </form>
</div>  
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js"></script>
<script src="../_/js/image_browser.js"></script>
</body>

ajax.imagebrowser.php

//When a page is clicked
if(isset($_POST['mappage'])){
    $sql = "SELECT * FROM `images` WHERE parentID = '".$_POST['folder_id']."'";
    $query = mysql_query($sql) or die ("Fout in query:".$sql."<br><br>".mysql_error());
    while($image = mysql_fetch_assoc($query)) {
        $foldername=$_POST['folder_name'];
        $imgName = $image['naam'];
        $imgExtension = $image['extensie'];
        $folderID = $_POST['folder_id'];
        echo '<div class="gallery_item"><img src="../../images/'.$foldername.'/'.$imgName.'.'.$imgExtension.'" alt="" /></div>';

    }
}


// When a module is clicked
if(isset($_POST['mapmodule'])){
    $sql = "SELECT * FROM `images` WHERE parentBox > 0";
    $query = mysql_query($sql) or die ("Fout in query:".$sql."<br><br>".mysql_error());
    while($image = mysql_fetch_assoc($query)) {
        $foldername=$_POST['folder_name'];
        $imgName = $image['naam'];
        $imgExtension = $image['extensie'];
        $moduleID = $image['extensie'];


        //Nederlands
        echo '<div class="gallery_item"><img src="../../images/'.$image['parent'].'/'.$image['type'].'/'.$image['parentID'].'/'.$imgName.'.'.$imgExtension.'" alt="" /></div>';

    }
}

imagebrowser.js

$(document).ready(function(){

    //Gallery height = menu height
    var folderheight = $('#folders ul').height();
    $('#gallery').css("height",folderheight);


    //Click on folders
    $('#folders').find('a.page').click(function() {
         var folder_name = $(this).text(),
             folder_number = $(this).attr('rel'),
             maptype = 'page';

         $("#gallery").load("ajax.image_browse.php", {folder_id: folder_number,mappage: maptype, folder_name:folder_name});
         return false;
    });


    //Click on module
    $('#folders').find('a.module').click(function() {
         var folder_name = $(this).text(),
             folder_number = $(this).attr('rel'),
             maptype = 'page';

         $("#gallery").load("ajax.image_browse.php", {folder_name:folder_name, mapmodule:maptype});
         return false;
    });

    $('.gallery_item').click(function() {
        $('.gallery_item').removeClass("image_select");
        $(this).addClass("image_select");   
        return false;   
    });

    $('li').click(function() {
        $('li').removeClass("folder_select");
        $(this).addClass("folder_select");
        return false;   
    });



    $("#folders").ajaxSend(function(){
        console.log("Load");
    });

    $("#folders").ajaxComplete(function(){
        console.log("Done");
    }); 

});
share|improve this question
I found out that when clicking on a list element. It fires for all the list elements with that class. The question is...how do I fix this? – user1648471 Sep 28 '12 at 10:12

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.