var select = document.querySelectorAll('selector');
const elements = select.querySelectorAll('selector within above selector')
Hello,
I am trying to do a nested selector on a webpage in javascript. I would like to find one class on a webpage and then do some other formula's with the even further narrowed down selectors. I am erroring out when trying this method. I am unsure how I should be doing this though. Can you point me somewhere on how to do nested selectors?
Thank you