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);
var mouseClick = function() {
alert('true');
}
input12.addEventListener("click", mouseClick, true);
вот так работает, всем спасибо