(function($) {
Drupal.behaviors.postsComments = {
attach: function (context, settings) {
$('.icon_comments').bind('click', function(){
var nids = $(this).closest('.mainlist-item').attr('about').split('/');
nid = nids[nids.length - 1];
if (!$(this).attr('data-comments')){
$.post(Drupal.settings.basePath + 'lk/comments', {'nid': nid}, nodeDetails);
$(this).attr('data-comments', true).addClass('open');
}else{
$(this).toggleClass('open');
}
});
}
};
......
})(jQuery);