Thanks Ricardo, looks good.

On Dec 3, 10:14 am, ricardobeat <[EMAIL PROTECTED]> wrote:
> Or pError.filter(':visible').
>
> By using 'pError' as a context, you are looking for it's children, not
> the elements themselves.
>
> - ricardo
>
> On Dec 3, 1:17 pm, Liam Potter <[EMAIL PROTECTED]> wrote:
>
> > it would be this
>
> > $('p.error:visible')
>
> > Joe wrote:
> > > If I have the following:
>
> > > var pError = $('p.error');
>
> > > Then I can do the following with no problem:
>
> > > pError.text('lorem");
>
> > > Yet, I want to check for the paragraphs that have the class "error"
> > > that are visible, I would think it is something like this:
>
> > > var visibleError = $(':visible', pError);
>
> > > However, this fails.
>
> > > Is this because the visible selector is different in creating the
> > > wrapped set of paragraph tags with the class error?
>
> > > What is the proper way of using the context of pError with the visible
> > > selector?
>
> > > Thanks!

Reply via email to