Код: Выделить всё
$('#edit').click(function() {
$(this).hide();
$('#save, #cancel').show();
});
$('#cancel').click(function() {
$('#edit').show();
$('#save, #cancel').hide();
});Код: Выделить всё
.save,
.cancel {
display: none;
}Код: Выделить всё
Edit
Save Changes
Cancel
Подробнее здесь: https://stackoverflow.com/questions/600 ... cel-button
Мобильная версия