Community discussion forum

how to access cross domain using JSON ajax

  • 6 months ago

    hello

    Question:

    i get "Access denied" error.Can anyone convert the code below in JSON i need to access data from some other domain. OR any other fully explained efficient method to access cross domains plz.

    ---------js file--------------

    window.onload=makeRequest;

    function makeRequest() { var httprequest={};
    if (window.XMLHttpRequest) { // Mozilla, Safari,... http
    request = new XMLHttpRequest(); } else { http_request=new ActiveXObject("Msxml2.XMLHTTP");
    }

        http_request.open("GET", "http://www.uclocal.com/LX-U.aspx?", false);
        http_request.onreadystatechange=function()
        {
            if(http_request.readyState==3)
            {
            alert("data is loading...please wait");
            }
            else
            if(http_request.readyState==4)
            {
                if(http_request.status==200)
                {
                    document.write(http_request.responseText);
                }
            }       
         }    
        http_request.send();
    

    }

    Post was edited on 08/05/2009 14:40:33 Report abuse

Post a reply

No one has replied yet! Why not be the first?

Sign in or Join us (it's free).

Want to stay in touch with what's going on? Follow us on twitter!