Hi,

> T.J., one question for:
>
>  div = $("#errordlg");
>     if (div) { // Paranoia
>         div.remove();
>
> I don't recognize this syntax:  $("#errordlg");

Walter was right, a bit of jQuery-ism crept in. It should, of course,
have been `div = $('errordlg');`. The amusing thing is that the very
next line (`if (div)`) is a very NON-jQuery check (in jQuery, that
check would always be true).

-- T.J. :-)

-- 
You received this message because you are subscribed to the Google Groups 
"Prototype & script.aculo.us" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/prototype-scriptaculous?hl=en.

Reply via email to