через тот-же редактор js в FF6 - работает, а в юзерскрипте с кодом
var sDiv = document.createElement("DIV");
sDiv.style.width = '60px';sDiv.style.height = '200px';sDiv.style.position = 'absolute';sDiv.style.top = '0px';
var input12 = document.createElement("input");
input12.type = 'button';
input12.id = 'input12';
input12.value = "SAVE";
sDiv.appendChild(input12);
document.body.appendChild(sDiv);
input12.onclick = function(){alert('111');}
- нет