Управление DOM с помощью JavaScript в современных браузерах и IE 11+
Получить значение атрибута
// Get the `title` attribute of a link element
const title = link.getAttribute('title');
Установить значение атрибута
// Set the width and height of an image
image.setAttribute('width', '100px');
image.setAttribute('height', '120px');
Удалить атрибут
// Remove the `title` attribute
ele.removeAttribute('title');