<script src="funciones.js" language="JavaScript"></script>
Código Javascript:
Ver original
addEvent(window,'load',inicializarEventos,false); function inicializarEventos() { cargarPagina('produ.asp?cate='+cate); } function presionEnlace(e) { if (window.event) { window.event.returnValue=false; var url=window.event.srcElement.getAttribute('href'); cargarPagina(url); // alert(url); } else if (e) { e.preventDefault(); var url=e.target.getAttribute('href'); cargarPagina(url); // alert(url); } // window.scrollTo(0,0); } var conexion1; function cargarPagina(url) { if(url=='') { return; } conexion1=crearXMLHttpRequest(); conexion1.onreadystatechange = procesarEventos; conexion1.open("GET", url, true); conexion1.send(null); // window.scrollTo(0,270); // $(document).ready(function() { // // $("#various2").fancybox({ // 'width' : '55%', // 'height' : '55%', // 'autoScale' : false, // 'transitionIn' : 'none', // 'transitionOut' : 'none', // 'type' : 'iframe' // }); // }); } function procesarEventos() { var detalles = document.getElementById("center_content"); if(conexion1.readyState == 4) { detalles.innerHTML = conexion1.responseText; var ob21=document.getElementById('sig'); if (ob21!=null) addEvent(ob21,'click',presionEnlace,false); var ob22=document.getElementById('ant'); if (ob22!=null) addEvent(ob22,'click',presionEnlace,false); var ob23=document.getElementById('sigu'); if (ob23!=null) addEvent(ob23,'click',presionEnlace,false); var ob24=document.getElementById('ante'); if (ob24!=null) addEvent(ob24,'click',presionEnlace,false); var ob1=document.getElementById('1'); if (ob1!=null) addEvent(ob1,'click',presionEnlace,false); var ob2=document.getElementById('2'); if (ob2!=null) addEvent(ob2,'click',presionEnlace,false); var ob3=document.getElementById('3'); if (ob3!=null) addEvent(ob3,'click',presionEnlace,false); var ob4=document.getElementById('4'); if (ob4!=null) addEvent(ob4,'click',presionEnlace,false); var ob5=document.getElementById('5'); if (ob5!=null) addEvent(ob5,'click',presionEnlace,false); var ob6=document.getElementById('6'); if (ob6!=null) addEvent(ob6,'click',presionEnlace,false); var ob7=document.getElementById('7'); if (ob7!=null) addEvent(ob7,'click',presionEnlace,false); var ob8=document.getElementById('8'); if (ob8!=null) addEvent(ob8,'click',presionEnlace,false); var ob9=document.getElementById('9'); if (ob9!=null) addEvent(ob9,'click',presionEnlace,false); var ob10=document.getElementById('10'); if (ob10!=null) addEvent(ob10,'click',presionEnlace,false); var ob11=document.getElementById('11'); if (ob11!=null) addEvent(ob11,'click',presionEnlace,false); var ob12=document.getElementById('12'); if (ob12!=null) addEvent(ob12,'click',presionEnlace,false); var ob13=document.getElementById('13'); if (ob13!=null) addEvent(ob13,'click',presionEnlace,false); var ob14=document.getElementById('14'); if (ob14!=null) addEvent(ob14,'click',presionEnlace,false); var ob15=document.getElementById('15'); if (ob15!=null) addEvent(ob15,'click',presionEnlace,false); var ob16=document.getElementById('16'); if (ob16!=null) addEvent(ob16,'click',presionEnlace,false); var ob17=document.getElementById('17'); if (ob17!=null) addEvent(ob17,'click',presionEnlace,false); var ob18=document.getElementById('18'); if (ob18!=null) addEvent(ob18,'click',presionEnlace,false); var ob19=document.getElementById('19'); if (ob19!=null) addEvent(ob19,'click',presionEnlace,false); var ob20=document.getElementById('20'); if (ob20!=null) addEvent(ob20,'click',presionEnlace,false); // window.scrollTo(0,0); } else { detalles.innerHTML = '<img src="../images/loading.gif">'; } } //*************************************** //Funciones comunes a todos los problemas //*************************************** function addEvent(elemento,nomevento,funcion,captura) { if (elemento.attachEvent) { elemento.attachEvent('on'+nomevento,funcion); return true; } else if (elemento.addEventListener) { elemento.addEventListener(nomevento,funcion,captura); return true; } else return false; } function crearXMLHttpRequest() { var xmlHttp=null; if (window.ActiveXObject) xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); else if (window.XMLHttpRequest) xmlHttp = new XMLHttpRequest(); return xmlHttp; }
dentro de produ.asp intento poner lo siguiente:
Código HTML:
Ver original
Que deberia de funcionar el problema esta que no puedo cargar el link al archivo js o css por lo cual me abre la pagina del link en la ventana y no hace el efecto ThickBox
Código HTML:
Ver original
porque si dentro del archivo final pongo esto si me funciona
Código HTML:
Ver original
<link rel="stylesheet" href="../includes/css/thickbox.css" type="text/css" media="screen" />
En cual de los archivos tendria que ir para que haga los efectos???