Estoy tan desesperada... Ahora lo puse asi y veo que pasa los valores por get pero el problema es que no avanza de pestaña a pestaña y no me lleva al php. Es asi:
Código Javascript
:
Ver originalfunction 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(datasource,divID){
var contenedor;
var otro;
contenedor = document.getElementById('tabs').getElementsByTagName('li');
ajax=nuevoAjax();
var nombre =document.form.fecha_evento.value //Esta variable obtiene el valor de lo q puso el usuario en el textbox nombre
ajax.open("GET", "detalle_cotizacion.php?"+"&"+"nombre="+nombre,true);
ajax.onreadystatechange=function() {
if (ajax.readyState==4) {
contenedor.innerHTML = ajax.responseText
}
}
ajax.send(null)
}
y en el boton de la ultima pestaña esto:
Código HTML:
Ver original<input type="submit" value="Cotizar" onclick ="cargarContenido('detalle_cotizacion.php','contenedor')"/>
ya no se como hacer