I am currently working on a project where class names are dynamically generated. I need to style these to override some richface component for the jsf framework.
I have a bunch of css classes that have this format:
rf-edt-hdr-c_idt12
rf-edt-hdr-c_idt13
rf-edt-hdr-c_idt14
and so on and so forth.
It is nested pretty deeply in the html and I was wondering what would be the best way to handle this? There are some nasty nested divs inside tables and I need to over ride its behaviour as I have no access to the components the developers used to do up some cleaner html.
Would it be a good idea to use jQuery and if so what plugin would be best? I went down the css route using attribute value by selector by it's not behaving exactly how I want it to. (I think the nested tables and divs might have something to do with that).
It's driving me nuts.