On Feb 23, 1:05 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > This has to be obvious - but I can't find it! I'm trying to have a > script restyle the a:links. Using the CSS name (which is, precisely, > #nav a:link) doesn't get a result. > > It does if I take the :link part off, but that overrides the child > styles. Seeing as "link" isn't a DOM element, I've tried all sorts of > combinations without success .... can somebody please tell me the one > I haven't tried, that works?
a:link in CSS is basically the same as a[href], try: $('#nav a[href]') --Klaus