core/skin/detsad20.ru/js/edit_page.js

28 lines
645 B
JavaScript
Raw Normal View History

2023-02-08 16:59:59 +05:00
$(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;
})
})