<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script type="text/javascript">
function doSomething() {
alert("works");
}
window.onload = function() {
var btn = document.createElement("input");
btn.type = "button";
btn.value = "click";
btn.onclick = "doSomething();";
document.body.appendChild(btn);
}
</script>
</head>
<body>
</body>
</html>
What is the problem?