124
| <![CDATA[<script type="text/javascript">
carrega_historico_proficional();
function carrega_historico_proficional(){
var xmlHttp;
try{
xmlHttp=new XMLHttpRequest();// Firefox, Opera 8.0+, Safari
}
catch (e){
try{
xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); // Internet Explorer
}
catch (e){
try{
xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
}
catch (e){
alert("No AJAX!?");
return false;
}
}
}
xmlHttp.onreadystatechange=function(){
if(xmlHttp.readyState==4){
document.getElementById('painel').innerHTML=xmlHttp.responseText;
//setTimeout('carrega_historico_proficional()',1000);
}
}
xmlHttp.open("GET","minha_pagina_acesso_banco.php?limit=limit 0,2000",true); // aqui configuramos o arquivo
xmlHttp.send(null);
}
window.onload=function(){
setTimeout('carrega_historico_proficional()',1000000); // aqui o tempo entre uma atualização e outra
}
i = 0;
tempo =5;
tamanho = 826; // tamanho da barra de rolagem >> Ver arquivo Leiame.txt
function Rolar() {
var objDiv = document.getElementById("painel");
var fim = objDiv.scrollTop = objDiv.scrollHeight;
var fimdiv = fim - 500;
document.getElementById('painel').scrollTop = i;
i++;
t = setTimeout("Rolar()", tempo);
if (i == fimdiv) {
i = 0;
}
}
function Parar() {
clearTimeout(t);
}
Rolar();
</script>]]>
|
200
| <![CDATA[<script>
function verificavagaencerada(){
}
function chamanome(){
$.ajax({
url: 'acoesmuraltv.php?acao=chamaatendimento' ,
dataType: 'jsonp',
jsonp: 'jsoncallback',
timeout: 5000,
success: function(data, status){
$.each(data, function(i,item){
if(item.databr=="0"){}else{
var divmodalvaga = '<div align="center" style="width:100%"><b style="color:#ff9900">'+item.nome+' </b> <hr> Atendimento: <b>'+item.tipo+'</b> </div>';
PlaySound();
$("#fechanome").append(divmodalvaga);
//$('#painel').hide() ;
$("#fechanome").show();
setTimeout(function() {
$('#fechanome').empty();
$("#fechanome").hide();
$('#painel').show();
//$('#myModalnome').modal('hide') ;
$.ajax({
type: "GET",
url: "acoesmuraltv.php?acao=deletnome",
success: function(data) {
//manipula os dados
},
error: function() {
}
});
}, 8000);
}
});
},
error: function(){
}
});
setTimeout("chamanome()", 15000);
}
chamanome1();
</script>]]>
|