Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/12/2009, 14:52
Avatar de Jona_than
Jona_than
 
Fecha de Ingreso: noviembre-2005
Ubicación: Chile
Mensajes: 155
Antigüedad: 19 años
Puntos: 0
Respuesta: Sistema categorización con Ajax

Código Javascript:
Ver original
  1. function objetoAjax(){
  2.         var xmlhttp=false;
  3.         try {
  4.                 xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
  5.         } catch (e) {
  6.                 try {
  7.                    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
  8.                 } catch (E) {
  9.                         xmlhttp = false;
  10.                 }
  11.         }
  12.  
  13.         if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
  14.                 xmlhttp = new XMLHttpRequest();
  15.         }
  16.         return xmlhttp;
  17. }
  18.  
  19. function MostrarConsulta(datos){
  20.         divResultado = document.getElementById('resultado');
  21.         ajax=objetoAjax();
  22.         ajax.open("GET", datos);
  23.         ajax.onreadystatechange=function() {
  24.                 if (ajax.readyState==4) {
  25.                         divResultado.innerHTML = ajax.responseText
  26.                 }
  27.         }
  28.         ajax.send(null)
  29. }

Encontré el siguiente código, para trabajar el cual me trabaja perfectamente en un formulario, el punto lamentablemente es que no quiero con botones de formularios, lo cual si no pudiera hacerlo de otra forma, lo haría así, si no que requiero con enlaces común y corrientes, y no he estado tratando de probar de la mejor forma posible, realizar el mismo resultado.

Código HTML:
Ver original
  1. <a href="javascript::MostrarConsulta('consulta.php?id=<?=$campo["ID_CATEGORIA_PORTAFOLIO"];?>');"><?=$campo["NOMBRE_CATEGORIA_PORTAFOLIO"];?></a>

Haber, si alguien me da una luz al respecto.

Saludos.
__________________
- Fasecreativa
- Twitter @jonyram