a los expertos sera que se puede? si se puede me pueden hechar una mano con el codigo que tengo que agregarle al script...
Bueno Saludos y Gracias.-
Cita:
<HTML><HEAD><TITLE>Ajax: Ejemplo 1 - Carga externa de datos</TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<SCRIPT language=javascript>
function nuevoAjax(){
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 cargarContenido(){
var contenedor;
contenedor = document.getElementById('contenedor');
ajax=nuevoAjax();
ajax.open("GET", "ejemploajax1.php",true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
contenedor.innerHTML = ajax.responseText
}
}
ajax.send(null)
}
window.onload= function(){cargarContenido()}
</SCRIPT>
<STYLE type=text/css>#contenedor {
BORDER-RIGHT: #f00 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: #f00 1px solid; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; MARGIN: 14px; BORDER-LEFT: #f00 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: #f00 1px solid
}
</STYLE>
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>Este ejemplo cargará la página <A
href="ejemploajax1.php">ejemploajax1.php</A>
y lo pondrá dentro del siguiente div:
<DIV id=contenedor>div contenedor</DIV></BODY></HTML>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<SCRIPT language=javascript>
function nuevoAjax(){
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 cargarContenido(){
var contenedor;
contenedor = document.getElementById('contenedor');
ajax=nuevoAjax();
ajax.open("GET", "ejemploajax1.php",true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
contenedor.innerHTML = ajax.responseText
}
}
ajax.send(null)
}
window.onload= function(){cargarContenido()}
</SCRIPT>
<STYLE type=text/css>#contenedor {
BORDER-RIGHT: #f00 1px solid; PADDING-RIGHT: 10px; BORDER-TOP: #f00 1px solid; PADDING-LEFT: 10px; PADDING-BOTTOM: 10px; MARGIN: 14px; BORDER-LEFT: #f00 1px solid; PADDING-TOP: 10px; BORDER-BOTTOM: #f00 1px solid
}
</STYLE>
<META content="MSHTML 6.00.2800.1106" name=GENERATOR></HEAD>
<BODY>Este ejemplo cargará la página <A
href="ejemploajax1.php">ejemploajax1.php</A>
y lo pondrá dentro del siguiente div:
<DIV id=contenedor>div contenedor</DIV></BODY></HTML>