You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
constelement=document.querySelector('.title');// only textelement.innerText;// => Hello world// with HTML tagselement.innerHTML;// => Hello <strong>world</strong>
replace the content inside the element
// only textelement.innerText='some text';// with HTML tagselement.innerHTML='some <strong>text</strong>';
remove one element (remove not hide)
element.remove();
get the style of one element
element.style.backGroundColor;// '#234568'// style css in lowerCamelCase
edit the style of one element
element.style.backGroundColor='#00FF33';// style css in lowerCamelCase
add a class to one element
element.classList.add('active');// NO `.` IN THE NAME OF THE CLASS!!!