Complex selector question
I have a nightmare CMS to work with. It only spits out tables within tables within tables etc al, some nested, some siblings....
and they have no classes or id's so i am trying to select in the only way left.,
when mousing over html in Firebug it puts out a display like this (simplified version)
html/body/div/div[3]/table[3]
i'm trying to replicate the CSS selector like this,... but is not working.
html body div div:nth-child[3] ...(doesn't work, breakdown at the :nth-child selector)
anyone know how i can access this?,