$('.test').on('click', function(e) {
alert('test');
});
function createPagination(pagination) {
$('.table-results').append('<tr>\
<td scope="row" colspan="18"><button class="test">test</button></td>\
</tr>');
}
$('.table-results').on('click', '.test', function(e) {
alert('test');
});
$('.table-results').on('click', '.test', function(e) {});
$('#create').on('click', function() {
$(this)
.after('<button class="test">Test</button>')
.next('.test')
.on('click', function() {
alert('CLICK');
});
});