I work on a site that generates unique IDs for a given form element every time I build a new form.
For example, there are these date pickers inside a cell inside a row with the IDs tr_range123 or tr_range456, etc.
I want to kill these date pickers but the only way to do it is apply display:none; to these IDs ... Is there any way to apply styles to all these IDs -- past, present and future?
Like...
#tr_range* {display:none;}
Is there something like that out there? I've heard of CSS variables but I think it's different. Also, I need something that's pretty browser-friendly.