You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
547 B
12 lines
547 B
/*
|
|
DESTOON Copyright (C)2008-2099 www.destoon.com
|
|
This is NOT a freeware,Use is subject to license.txt
|
|
*/
|
|
var cat_id;
|
|
function load_category(catid, id) {
|
|
cat_id = id; category_catid[id] = catid;
|
|
$.post(AJPath, 'action=category&category_title='+category_title[id]+'&category_moduleid='+category_moduleid[id]+'&category_extend='+category_extend[id]+'&category_deep='+category_deep[id]+'&cat_id='+cat_id+'&catid='+catid, function(data) {
|
|
$('#catid_'+cat_id).val(category_catid[cat_id]);
|
|
if(data) $('#load_category_'+cat_id).html(data);
|
|
});
|
|
}
|