Return to Snippet

Revision: 5756
at April 1, 2008 21:03 by trmarch


Updated Code
['/path/to/include.incl'].each(function(url) {
	new Ajax.Request(url, {
		asynchronous: false,
		onComplete: function(request) {
			document.write(request.responseText);
		}
	});
});

Revision: 5755
at April 1, 2008 21:00 by trmarch


Initial Code
['/path/to/include.incl'].each(function(url){
	new Ajax.Request(url, {asynchronous: false, onComplete: function(request){
		document.write(request.responseText);
	}});
});

Initial URL


Initial Description


Initial Title
Include Apache SSIs in JSPs using Prototype

Initial Tags
apache

Initial Language
JavaScript