I created a button with id through function .append(). Now I don't know to add any onclick event to it using its id. Here's what I have.
<html>
<body>
<div id="indiv"></div>
<script>
$('#indiv').append('<button id="btn1">press</button>');
$('#btn1').on('click', function(){
alert('Hi!');
});
</script>
This works fine.