Question: : Rewrite the following AJAX code so that all five (5) errors have been corrected (5 Marks). Your solution must use the entire function outlined
: Rewrite the following AJAX code so that all five (5) errors have been corrected (5 Marks).
Your solution must use the entire function outlined below. As such, any non-error inclusions within this code should also be rewritten into your answer document. function
beginAJAX() { const xhttp = XMLHttpRequest(); xhttp.onreadystatechange = function { if(this.readyState == 2 && this.status == 200) { processResponse(this.responseXML); } }; xhttp.open("GET", "test.json", true); xhttp.send; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
