Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

WanCW

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Include javascript by DOM

Orignial: http://www.codepost.org/browse/snippets/85

function include(file)
{
      var script  = document.createElement('script');
      script.src  = file;
      script.type = 'text/javascript';

      document.getElementsByTagName('head').item(0).appendChild(script);
}

Include javascript by XMLHttpRequest


Original from http://www.exit12.org/archives/12

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()
	{
		if (req.readyState == 4)
		{
			window.eval(req.responseText);
		}
	}
	req.send(null);
}
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS