I currently have this working , but i need to add an additional element so i switched to SelectorAll , but it doesn't work
This is working
if(!document.getElementById('body_options_45')) {
//Do Stuff
}
When i add a 2nd ID and switch to selectorALl , it stops working
if(!document.querySelectorAll('#body_options_45, #body_options_113')) {
//Do Stuff
}
What am i missing here ?