I have a jquery function that loads post content when I click on the post thumbnail and it works great. But if I click twice, the content gets loaded twice.
I read somewhere that I needed to unbind the click and bind it back when content has finished loading. Here is my attempt.
Now it seems that the event.preventDefault(); get deactivated or something because it loads the complete page on the second click (instead of the AJAX content).
$("a.ajaxed").on("click",function(event) {
event.preventDefault();
var self = this,
// ...; other variables
$(self).unbind("click"); // code line added 1of2
$("#streamwrapper").fadeOut(1000, function(){
$.ajax({
type: "POST",
dataType: "JSON",
url: ajax_object.ajaxurl,
data: ({
action : "get_all_images",
post_id: postid
}),
success:function(data){
$("#board").append(postdiv);
$("#post-container").append(data);
postdiv.fadeIn(1000);
$(self).bind("click"); // code line added 2of2
},
error:function(data){
console.log(data);
}
});
});
return false;
});