Introducing querySelector and querySelectorAll
Comparing with getElementById, getElementByName,... querySelector and querySelectorAll are newcomers but soon become popular regarding their conveniences and consistent of using.
How to use querySelector and querySelectorAll?
With querySelector...
getElementByID and getElementsByTagName in DOM manipulation
DOM manipulation is a skill set that every web developer must know about. With DOM manipulation, we can access the DOM and change the...