$('.but').on('click', function() {
var name = $(this).attr("id");
$.ajax({
type: "POST",
url: "delete.php",
data: {fname:name}
success: function() {
$("."+name).remove();
}
})
});
$('.but').on('click', function() {
$.ajax({
type: "POST",
url: "delete.php",
data: {fname:$(this).attr("id")}
success: function() {
$("."+name).remove();
}
})
});
Что вы имеете в виду под салатом их php и html?
The Element.classList is a read-only property which returns a live DOMTokenList collection of the class attributes of the element.
Какая из букв в словах read only вам непонятна?