вот код
<html>
<head>
<title>Тест
</title>
</head>
<body>
<script>
options();
function options()
{
var non = document.createElement('INPUT');
non.setAttribute('type', 'radio');
non.setAttribute('name', 'job');
non.setAttribute('value', '1');
opts = document.createElement('DIV');
opts.id = 'opts';
opts.setAttribute('style','position:fixed;top:0;left:0;z-index:4');
opts.appendChild(non);
opts.innerHTML += '1<BR>';
document.body.appendChild(opts);
non.addEventListener('click', handler, false);
}
function handler()
{
alert(1);
}
</script>
</body>
</html>
Проблема в том, что по клику на радиобатоне ничего не происходит