<div class="grid--cell fl1 lh-lg">
<div class="grid--cell fl1 lh-lg">
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, <a href="/help/reopen-questions">visit the help center</a>.
</div>
</div>
</div>
<div class="grid--cell mb0 mt8">Closed <span title="2012-12-04 04:23:02Z" class="relativetime">7 years ago</span>.</div>
</div>
</aside>
var xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.onreadystatechange = receiveResponse;
xhr.send();
Does the "true" parameter imply that the object loads asynchronously? If this is not the case, what does the "true" do specifically?
</div>
Yes. And the default is true.
Yes, the true
value means that the request is asynchronous. Here is a link to the W3Schools page on this: http://www.w3schools.com/ajax/ajax_xmlhttprequest_send.asp
Here is the W3 link: http://www.w3.org/TR/XMLHttpRequest/#the-open-method