Ver Mensaje Individual
  #1 (permalink)  
Antiguo 09/07/2007, 11:17
Avatar de oabareload
oabareload
 
Fecha de Ingreso: junio-2006
Ubicación: Distrito Federal, México
Mensajes: 57
Antigüedad: 18 años, 6 meses
Puntos: 0
Uncaught exception: HTMLDocument.getElementById

Código:
function llenar(id,divid,divid2)
	{
		minutos = 15;
		segundos = 00;
		var peticion = nuevoAjax();
		var url = "
cargar.asp";
		var valor = encodeURI(document.getElementById(divid).value);
		var obj = document.getElementById(divid2);
		var url2= id+valor+"&ms="+new Date().getTime();
		peticion.open("POST", url, true);
		peticion.onreadystatechange = function()
			{
				displaychange("loading","block");
				if (peticion.readyState == 4)
					{
						if (peticion.status == 200)
							{
								var result = peticion.responseText;
							        obj.value = result;
								obj.innerHTML = result;
								displaychange("loading","none");
							}
						else
							{
								estado(peticion.status);
							}
					}
			}
		peticion.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=ISO-8859-1');
		peticion.send(url2);
		return false;
	}
Error...
[code]
setting a property that has only a getter

nuevoAjax()java.js (line 14)

llenar("tabla=CLIENTES&campo=id_empresa&campo3=id_ cliente&campo2=", "id_empresa", "clientes")java.js (line 178)

onchange(change )index.asp# (line 1)

[Break on this error]
eval(function(p,a,c,k,e,d){e=function(c){return(c< a?"":e(parseInt(c/a)))+((c=c%a...[code]