/* RVGlobalSoft Manager*/
/*
jQuery( document ).ready(function() {
getproductlistCallAjax();
getdoclistCallAjax();
});
*/
/* Function */
function getproductlistCallAjax(){
jQuery.get("index.cgi",
{
action: "getproductlist",
//debug : 1,
},
function( data ) {
jQuery("#recomSoftwareAjax").html( data );
}
);
}
function getdoclistCallAjax(){
jQuery.get("index.cgi",
{
action: "getdoclist",
//debug : 0,
},
function( data ) {
jQuery("#docAjax").html( data );
}
);
}
function getFeedCallAjax(urlFedd){
jQuery.get(urlFedd,
function( data ) {
jQuery("#example").html( data );
}
);
}
function getLatestVersionCallAjax(productname,appname){
jQuery.get("index.cgi",
{
action: "getLatestVersion",
product: productname,
appname: appname,
//debug : 1,
},
function( data ) {
jQuery("#latest_" + productname).html( data );
}
);
}
function getLicenseInfoCallAjax(productname){
jQuery.get("index.cgi",
{
action: "getLicenseInfo",
product: productname,
},
function( data ) {
jQuery("#productLicenseInfo_" + productname).html( data )
}
);
}
function doSaveRestrictReseller(){
jQuery.get("index.cgi",
{
action: "doSaveRestrictReseller",
res_accres : jQuery( "#res_accres" ).val(),
//debug : 1,
},
function( data ) {
jQuery("#recomSoftwareAjax").html( data );
}
);
}
function saveWHMUI(filename,content){
jQuery.post("index.cgi",
{
action: "saveWhmUI",
filename: filename,
content: content,
},
function( data ) {
}
);
}
function showsupproductbtn(programname) {
jQuery("div").removeClass(programname+"_hidden");
jQuery("div").removeClass(programname+"_loading");
}
Copyright 2K16 - 2K18 Indonesian Hacker Rulez