You are at the archive for the Javascript category


Their is a Javascript Include Function…

July 10th

function include(jsFileLocation) {
if(window.XMLHttpRequest) {
var req = new XMLHttpRequest();
} else {
var req = new ActiveXObject("Microsoft.XMLHTTP");
}
 
req.open("GET", jsFileLocation,false);
req.onreadystatechange = function() {
[...]

Size

Colors