JavaScript memory leaks - test

Intro

Explanation

Leaks.

window.onload = init;

function init()
{
	createLinks();
	var x = document.getElementsByTagName('a');
	for (var i=0;i<x.length;i++)
	{
		createNewClick(x[i]);
	}
}

function createNewClick(obj)
{
	obj.onclick = function () {
		obj.firstChild.nodeValue = ' Clicked! - ';
	}
}

Test