JavaScript is required to use Bungie.net

Forums

3/5/2016 11:59:23 AM
3
<script type="javascript/text"> /* * creates a new XMLHttpRequest object which is the backbone of AJAX * or returns false if the browser doesn't support it */ function getXMLHttpRequest() { var xmlHttpReq; // to create XMLHttpRequest object in non-Microsoft browsers if (window.XMLHttpRequest) { xmlHttpReq = new XMLHttpRequest(); } else if (window.ActiveXObject) { try { //to create XMLHttpRequest object in later versions of Internet Explorer xmlHttpReq = new ActiveXObject("Msxml2.XMLHTTP"); } catch (exp1) { try { //to create XMLHttpRequest object in later versions of Internet Explorer xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP"); } catch (exp2) { //xmlHttpReq = false; alert("Exception in getXMLHttpRequest()!"); } } } return xmlHttpReq; } /* * AJAX call starts with this function */ function makeRequest() { var xmlHttpRequest = getXMLHttpRequest(); alert ("xmlHttpRequest=" + xmlHttpRequest); xmlHttpRequest.onreadystatechange = getReadyStateHandler(xmlHttpRequest); xmlHttpRequest.open("POST", "ILiveOnPlanetEarth.do", true); xmlHttpRequest.setRequestHandler("Content-Type", "application/x-www-form-urlencoded"); alert("inside makeRequest()!"); xmlHttpRequest.send(null); alert("sent!"); } /* * Returns a function that waits for the state change in XMLHttpRequest */ function getReadyStateHandler(xmlHttpRequest) { // an anonynous function returned // it listens to the XMLHttpRequest instance return function() { if (xmlHttpRequest.readyState == 4) { if (xmlHttpRequest.status == 200) { document.getElementById("ILiveOnPlanetEarth").innerHTML = xmlHttpRequest.responseText; } else { alert("Http error " + xmlHttpRequest.status + ":" + xmlHttpRequest.statusText); } } }; } </script>
English

Posting in language:

 

Play nice. Take a minute to review our Code of Conduct before submitting your post. Cancel Edit Create Fireteam Post

You are not allowed to view this content.
;
preload icon
preload icon
preload icon