The deb that you want to create onclick does not close with </div> '.
What if you try the following code:
$(function () { $('#superdiv').on('click', function (event) { $('body').append( $('<div/>',{ 'id' : 'super', 'text' : 'tetet'}).mouseover(function(event) { alert('test'); }) ); }); });
source share