For various reasons, I cannot used an id to remove a div.
I basically have 5 divs, and if a specific if statement is true, I need to remove any one of those 5 divs.
I have placed a class in the div tags, which allows me to use $(“div”).length, which tells me how many divs I have.
Is it possible to remove any “one” of those without the div having an id?
If you need ANY div removed, then the first div fits that requirement I guess.