$(function() {
//More Button
$('body').on("click", ".comment_more", function()
{
var ID = $(this).attr("id");
if(ID)
{
$("#comment_more"+ID).html('
');
$.ajax({
type: "GET",
url: "../entry.php",
data: {"lastmsg" : ID, "entry_field_num" : entry_field_num, "comment_field_num" : comment_field_num, "e_id" : 57036, "w" : "Badamsuren"},
cache: false,
success: function(html){
$("#comment_container").append(html);
$("#comment_more"+ID).remove();
}
});
}
else
{
$(".comment_morebox").slideUp();
}
return false;
});
});