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--------------
Code:window.onload=makeRequest; function makeRequest() { var http_request={}; 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(); }



Reply With Quote

Bookmarks