De antemano muchas gracias por tu tiempo.
En mi web necesito un scroll, ya que como he usado posiciones absolutas, al usar el ajax, y al llamar a otra web, ps sale por abajo, y no me aparece el scroll, o simplemente no baja la pantalla.......
es problema del ajax, javascript o css???
mi codigo es:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Rustica</title>
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<script language="javascript">
function colocar(){
ancho = screen.width;
posicion=(ancho/2)-430;
document.getElementById("tabla").style.left=posicion+"px";
}
var XMLRequest;
function getHTTPObject() {
var xmlhttp;
if(window.XMLHttpRequest){
xmlhttp = new XMLHttpRequest();
}else if (window.ActiveXObject){
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
}
return xmlhttp;
}
function enviar(url){
XMLRequest=getHTTPObject();
XMLRequest.open("GET",url,true);
XMLRequest.onreadystatechange = function(){
if (XMLRequest.readyState == 4 && XMLRequest.status == 200) {
document.getElementById("cuerpo").innerHTML=XMLRequest.responseText;
}
}
XMLRequest.send(null);
}
</script>
<body onload="colocar()">
<div><img src="images/image/madera.jpg" style="position:absolute; z-index:1; width:100%; height:100%;"></div>
<table id="tabla" width="860" border="0" align="center" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF">
<tr>
<td align="center" bgcolor="#FFFFFF"></td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF" style="font-size:20px"><img src="images/image/logito.gif" width="250" height="125" /><br />Pastas - Pizzas - Parrillas</td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF"><hr style="border:1px inset #990000" /></td>
</tr>
<tr>
<td align="center"><img src="images/image/local.jpg" width="860" height="307" /></td>
</tr>
<tr>
<td align="center" bgcolor="#FFFFFF"><hr style="border:1px inset #990000" /></td>
</tr>
<tr>
<td>
<table border="0" cellpadding="5" cellspacing="0" align="center" class="enlaces">
<tr>
<td><a href="#" onclick="enviar('inicio.php')">Index</a></td>
<td><a href="#" onclick="enviar('contactenos.php')">Contacto</a></td>
<td><a href="#" onclick="enviar('carta.php')">Carta</a></td>
<td><a href="#" onclick="enviar('franquicias.php')">Franquicias</a></td>
</tr>
</table>
</td>
</tr>
<tr><td><div id="cuerpo">aaaa</div></td></tr>
</table>
</body>
</html>
y no sale lo que jala de las otras web....
por favor una ayudita.