How can I get jQuery to only do an ajax query one time?
Right now it contacts the server every time a user toggles "Comments (X)"
// Replies - Toggle display of comments
$('.info .reply').click( function() {
$('.reply', this.parentNode.parentNode).toggle();
return false;
});
// Load comments
$('.info .reply', this).mousedown( function() {
var id = $('form #id', this.parentNode.parentNode).val();
$.ajax({ url: location.href, type: 'post', data: 'id=' + id, dataType: 'json',
success: function(data) {
for (var i in data) {
// Do AJAX Updates
}
}
});
return false;
});
I'm thinking I can somehow put an unbind() event in here after the ajax data is loaded, but I'm not sure where!
Thanks for your help!