$(function(){ /*Показываем цветную картинку*/ $("#del_fon").click(function(event){ var id_page=$(this).attr("id_page"); $("#div_del_fon").load("/mod/edit_page/act.php?act=del_fon&id=" + id_page); $(this).hide(); $("#input_file").show(); }) /*Удаляем вложение*/ $(".del_attach").click(function(event){ var id_page=$(this).attr("id_post"); var num_file=$(this).attr("href"); alert(num_file); $("#div_del_fon").load("/mod/edit_page/act.php?act=del_attach&id=" + id_page + "&num_file=" + num_file); $(this).hide(); $("[name=doc" + num_file + "]").show(); return false; }) })