ZenphotoCMS Forum
How to display rating using ajax - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: How to display rating using ajax (/thread-7589.html)



How to display rating using ajax - midas - 2010-09-08

Hi
My site www.winnicki.us.
Description on album page work correctly but rating not work.
Im using innerhtml.

    function loaddata(div_id,option, param, value)
    {
        if (window.XMLHttpRequest)
          {// code for IE7+, Firefox, Chrome, Opera, Safari
          xmlhttp=new XMLHttpRequest();}
        else
          {// code for IE6, IE5
          xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");}

        xmlhttp.onreadystatechange=function()
          {if (xmlhttp.readyState==4 && xmlhttp.status==200)
            {document.getElementById(div_id).innerHTML=xmlhttp.responseText;}}
        xmlhttp.open("GET",httpphp+"?op="+option+"&"+param+"="+value,true);
        xmlhttp.send();
    }

Krzysztof