lok105,
Это не важно
<html>
<head>
</head>
<body>
<table id="tableTraffic">
</table>
<script>
table=document.querySelector("#tableTraffic")
add=function(){
this.onclick=null
var tr=document.createElement("tr")
tr.innerHTML="<td><input class='pole' type='text' name='Come'/></td>"
tr.onclick=add
table.appendChild(tr)
}
add()
</script>
</body>
</html>