Skip to content

Instantly share code, notes, and snippets.

View aaronbjork's full-sized avatar

Aaron Bjork aaronbjork

View GitHub Profile
var xhr = $.ajax({ url : "./"});
xhr._onreadystatechange = xhr.onreadystatechange;
xhr.onreadystatechange = function() {
xhr._onreadystatechange();
if (xhr.readyState == 3){alert('Interactive');}
};