11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
$(function () {
|
|
$('.btn-portfolio-delete').on('click', function (e) {
|
|
e.preventDefault();
|
|
|
|
var self = this;
|
|
|
|
$.get(self.href, function (response) {
|
|
$(self).parent().html(response);
|
|
});
|
|
});
|
|
}); |