My current CSS code looks like this:
#loading{ display:none; }
The issue I am facing is that I need to hide multiple loading divs, each with an id that includes the word "loading".
For example:
<div id=loading1></div> <div id=loading422></div> <div id=loading9232></div>
I would like to apply the loading style to all these divs. Is there a way to do this? If so, how should I modify my CSS?
Thank you in advance!