So I've got a table of 'skills' for which an input looks up an array to check if it can be added to a current skills array to be displayed in the table.
Each row has a remove button, however adding new rows to the table - the remove button doesnt seem to work.
Here is the JSFiddle I'm using: https://jsfiddle.net/hyc61qtx/
This is how I currently remove the table row:
$('.remove-skill').on('click', function() {
var $kill = $(this).parent('td').parent('tr');
$kill.addClass('danger');
$kill.fadeOut(1250, function() {
$(this).remove();
});
});