<?php
function not_close(id) {
$.ajax({
type: "POST",
url: "/core/jphp/not/close.php",
data: "id=" + id,
success: function(html) {
$('#not_' + id).hide();
// alert(html);
}
});
}
?>