Nodelist .
<body>
<div id="one" class="clones" style="background:red;width:100px;height:100px"></div>
</body>
<script>
var nodeList = document.getElementsByClassName('clones')
nodeList.addEvents = function(){
nodeList.item(nodeList.length-1).addEventListener('click',function(){
console.log(this.id);
});
}
nodeList.addEvents();
var _clone = document.getElementsByTagName('div')[0].cloneNode(true);
_clone.id="two"
document.body.appendChild(_clone);
nodeList.addEvents();
</script>