// VCC javascript v0.1.1
jQuery(document).ready(function() {
function updateagents() {
jQuery.get("https://virtualcc.it/customscripts/ac/vcc.php?operatori[]=96:3663920751&operatori[]=58:0759845669&operatori[]=83:0226701398&operatori[]=59:051504545", function(data){
var agents = data.split(';');
jQuery.each(agents,function(id,agent){
apcs=agent.split(",");
jQuery("ul.cartomanti li span#operatore-"+apcs[0]+".statusoperatore").html("
");
});
});
}
updateagents();
window.setInterval(function(){
updateagents();
}, 3000);
jQuery('.fusion-title.title.numerotelefono h2').replaceWith(function() {
var url = jQuery.trim(jQuery(this).text());
return '' + url + '
';
});
});