Upon Performance Timeline inspection in Chrome Developer Tools it was observed that document.querySelectorAll
was being invoked when rendering elements to the DOM
. This was determined to be the cause of slow rendering and updating in the DOM
and replaced with document.getElementById
.