/* Скрипт админки по добавлению ценовых групп */ function del_level (level) { $.post("process.php", { task: "removelevel" , value : level }, function(data){ if(data) { $('#level_'+level).fadeOut(); $('#level_'+level).remove(); } }); } function del_level_input(id){ $('#input').hide(); $('#add_link').show(); } function add_group_input(cat_id) { $('#add_link').hide(); count=$(".input_span").length; textToInsert =' - x '; $('#input_span').html(textToInsert); $('#input_span').fadeIn(); } function add_group() { cat_id=$('#cat_id').val(); start=$('#start').val(); end= $('#end').val(); $('#input_span').fadeOut(); $.post("process.php", {task: "addlevel", cat_id:cat_id , start: start , end :end }, function(data){ textToInsert =' '; textToInsert +='x'; $('#levels').append(textToInsert); $('#add_link').show(); }); }