Co-authored-by: Adam Bem <adam.bem@zoho.eu> Reviewed-on: #186 Reviewed-by: Mikolaj Widla <widlam@noreply.example.com>
5 lines
110 B
JavaScript
5 lines
110 B
JavaScript
const deleteParent = function(){
|
|
$(this).closest('div.tile').remove();
|
|
}
|
|
|
|
$('#test1').click(deleteParent); |