A, lo que tengo es en Ajax, lo siguiente:
Código Javascript
:
Ver original<script language="javascript">
$(document).ready(function() {
$().ajaxStart(function() {
$('#loading').show();
//$('#result').hide();
}).ajaxStop(function() {
$('#loading').hide();
$('#result').fadeIn('slow');
});
$('#form, #fat, #fo3').submit(function() {
$.ajax({
type: 'POST',
url: $(this).attr('action'),
data: $(this).serialize(),
success: function(data) {
$('#result').html(data);
}
})
var comando = document.getElementById("commands").value;
comando = comando.replace(" ","");
if(comando.substring(0,4)=="exit")
{
location.href="menuPrincipal.php";
}
document.getElementById("commands").value='';
return false;
});
})
</script>
Código Javascript
:
Ver originalfunction objetoAjax(){
var xmlhttp=false;
try {
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
} catch (E) {
xmlhttp = false;
}
}
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
return xmlhttp;
}
function MostrarConsulta(datos){
divResultado = document.getElementById('result');
ajax=objetoAjax();
ajax.open("GET", datos);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
divResultado.innerHTML = divResultado.innerHTML + ajax.responseText;
}
}
ajax.send(null)
}